jQuery如何撤消选择更改

编程入门 行业动态 更新时间:2024-10-10 07:26:35
本文介绍了jQuery如何撤消选择更改的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个选择框,我想先添加一个确认,然后再将其更改为特定选项.示例:

I have a select box, and I'd like to add a confirm before changing it to a specific option. Example:

<select name="select"> <option value="foo" selected="selected">foo</option> <option value="bar">bar</option> </select>​​​​​​​​​​​​​​​​​​

$('select').change(function() { var selected = $(this).val(); if (selected == 'bar') { if (!confirm('Are you sure?')) { // set back to previously selected option } } });

我正在考虑添加一个隐藏的输入字段,并在每次更改选择时更新其值.这样,我可以在change函数中检索以前的值. 示例:

I'm thinking about adding a hidden input field and update its value every time the select is changed. That way I can retrieve the previous value in the change function. Example:

<input type="hidden" name="current" value="foo" />

$('select').change(function() { var selected = $(this).val(); var current = $('input[name=current]').val(); if (selected == 'bar') { if (!confirm('Are you sure?')) { $(this).val(current); return false; } } $('input[name=current]').val(selected); });

是否有更简单/更好的方法来实现这一目标?

Is there an easier/better way to accomplish this?

推荐答案

您可以使用 $.data 功能:

Rather than using a global variable (evil!) or a hidden element (abuse of the DOM) you can use the $.data feature:

$('select').change(function() { var selected = $(this).val(); if (selected == 'bar') { if (!confirm('Are you sure?')) { $(this).val($.data(this, 'current')); return false; } } $.data(this, 'current', $(this).val()); });

更多推荐

jQuery如何撤消选择更改

本文发布于:2023-11-09 07:49:19,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1571779.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:jQuery

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!