我正在使用 jquery 对话框 jquery。我在功能上有一些条件。我已经预付了一个类似于实际代码的演示,它在本地工作但不能在小提琴中工作。我想要的是当用户单击“打开框”然后根据用户选择我们相应地改变。但问题是当用户单击“打开框”时正在改变按摩。它不是等到用户选择他的选择。我想使用功能等到用户选择他的选项然后发出警报。小提琴
<head>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/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.3/jquery-ui.js"></script>
</head>
<body>
<a href="javascript:checkvisible(0)">open box</a>
<div id="dialog" >
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
</body>
<script type="text/javascript">
var val= $('#dialog').dialog({autoOpen: false, buttons: {
"OK": function () {
$(this).dialog("close");
return true;
},
"cancel": function () {
$(this).dialog("close");
return false;
}
}});
function openTo(Id_, width_) {
var divId = $('#' + Id_);
divId.dialog('option', 'width', parseInt(width_));
divId.dialog('option', 'show', 'clip');
divId.dialog('option', 'hide', 'clip');
divId.dialog('option', 'zIndex', 1000);
divId.dialog('open');
}
function showbox (){
openTo('dialog',200)
}
function checkvisible(notes){
if(notes){
// do something
}
else {
var procees= showbox();
if(procees){
alert('ok')
}
else {
alert('cancelled')
}
}
}
</script>
</html>