$('.group-role-form select').focus(function() {
prev_val = $(this).val();
}).change(function(){
if (confirm('确认执行本操作么?')) {
$(this).closest('form').submit();
}else{
$(this).val(prev_val);
return false;
}
});
$('.group-role-form select').focus(function() {
prev_val = $(this).val();
}).change(function(){
if (confirm('确认执行本操作么?')) {
$(this).closest('form').submit();
}else{
$(this).val(prev_val);
return false;
}
});
本文标题:select change 加confirm
本文链接:https://www.haomeiwen.com/subject/fasdfctx.html
网友评论