【发布时间】:2013-04-23 09:36:40
【问题描述】:
有人可以帮助我尝试使用 jQueryUI 对话框来确认是或否
<script src="/Scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script>
$(function () {
$("#dialog").dialog({
autoOpen: false,
resizable: false,
height: 240,
modal: true,
show: {
effect: "blind",
duration: 1000
},
hide: {
effect: "explode",
duration: 1000
},
buttons: {
"Yes": function () {
$(this).dialog("close");
$('#searchForm').submit();
},
"No": function () {
$(this).dialog("close");
return false
}
}
});
});
$(function () {
$('#searchForm').submit(function () {
$("#dialog").dialog("open");
});
});
</script>
<div id="dialog" title="Confirm Terms?">
<p><span class="ui-icon ui-icon-alert" style="float: left; margin: 0 7px 20px 0;"></span>Click YES to accept the Terms of Use</p>
</div>
<form action="#" id="searchForm" method="post" name="searchForm">
<input id="firstname" name="firstname" style="width: 140px;" type="text" value="paul" />
<input id="surname" name="surname" style="width: 140px;" type="text" value="east" />
<input id="address" name="address" style="width: 490px;" type="text" value="" />
<input type="submit" value="Filter" />
</form>
每次单击提交按钮时,对话框都会出现大约 1 秒钟,然后消失并提交表单。请你指出我哪里出错了
I have ran it in jsfiddle here
谢谢保罗
【问题讨论】:
标签: jquery forms jquery-ui submit