好吧,我回来了...我正在尝试使 jquery UI 的按钮和对话框插件与我的表单一起使用。我想要重置按钮
<button id="opener" value="reset" type="submit">Reset</button>
拉出一个确认对话框,它确实如此。取消应该关闭对话框并将按钮设置回其原始状态。它可以很好地关闭,但按钮保持其悬停状态,即使我已经尝试在我能想到的几乎所有地方添加 .refresh 方法。
jQuery(document).ready(function($) {
$(".dialog").dialog({
autoOpen: false,
resizable: false,
modal: true,
title: 'Warning!',
close: function () {
$('#opener').button('refresh');
},
buttons: {
'Continue': function() {
$(this).dialog('close');
},
Cancel: function() {
$(this).dialog('close');
$('#opener').button('refresh')
}
}
});
$('#opener').click(function() {
$('.dialog').dialog('open');
$(this).button('refresh')
return false;
});
});
然后在继续响应中,按钮应继续其最初的用途。这不会发生。我得到一个 return: false 类型的行为 w/o return: false 任何地方。