我的代码如下:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript" src="Scripts/jquery-1.7.1.js"></script>
<script type="text/javascript" src="Scripts/jquery-ui-1.8.17.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('<div id="dialogDiv">' + 'This is a dialog.' + '</div>').appendTo('body');
$('#dialogDiv').dialog({
resizable: false,
height: 140,
modal: true,
autoOpen: false,
});
$('#btnLoad').click(function () {
$('#dialogDiv').dialog('open');
return false;
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="btnLoad" Text="Load" runat="server" />
</div>
</form>
</body>
</html>
我希望我的对话框是模态的,这样在我的对话框关闭之前我不能再次单击“加载”按钮。但是使用我上面的代码,我仍然可以单击“加载”按钮。
我正在使用 JQuery ui 1.8.17。谁能告诉我哪里出错了?即使我的内容只是一个句子,也会出现滚动条。如何只隐藏水平滚动条?