本文介绍了jQuery防止更改选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果某个条件适用,我想防止选择框被更改。这样做似乎不起作用:
I want to prevent a select box from being changed if a certain condition applies. Doing this doesn't seem to work:
$('#my_select').bind('change', function(ev) {
if(my_condition)
{
ev.preventDefault();
return false;
}
});
我猜这是因为这一点,所选择的选项已经改变了。
I'm guessing this is because by this point the selected option has already changed.
有什么其他的方法?
推荐答案
:
var my_condition = true;
var lastSel = $("#my_select option:selected");
$("#my_select").change(function(){
if(my_condition)
{
lastSel.prop("selected", true);
}
});
$("#my_select").click(function(){
lastSel = $("#my_select option:selected");
});
这篇关于jQuery防止更改选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!