所以我有一个选择选项字段,我更改了选择字段的选项,确认消息将显示。我的问题是如何在取消确认消息后阻止更改选择选项字段的值。
$('.changeScoreFem').on('change', function(){
if (confirm('Are you sure to change this score?')) {
//continue to change the value
} else {
//else do not change the selecoption field value
}
});
答案 0 :(得分:2)
您需要在变量中存储选定的选项,如果确认已取消,请重新选择。
var selected = $(".changeScoreFem option:selected");
$(".changeScoreFem").on("change", function(e){
if (confirm("Are you sure to change this score?"))
selected = $(this).find("option:selected");
else
selected.prop("selected", true);
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<select class="changeScoreFem">
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
</select>
&#13;
答案 1 :(得分:2)
您可以通过存储select的当前值,然后根据需要撤消它来完成此操作。
以下使用自定义事件存储数据,如果您从服务器传递选定项目,则会在页面加载时触发自定义事件
var $sel = $('.changeScoreFem').on('change', function(){
if (confirm('Are you sure to change this score?')) {
// store new value
$sel.trigger('update');
} else {
// reset
$sel.val( $sel.data('currVal') );
}
}).on('update', function(){
$(this).data('currVal', $(this).val());
}).trigger('update');
的 DEMO 强>