我有一个页面,我想在页面加载后立即在模式对话框(jquery UI对话框)中显示一些内容。
$(document).ready(function(){
$("#example").dialog();
});
<div id="example" class="flora" title="This is my title">
I'm in a dialog!
</div>
由于
答案 0 :(得分:5)
您的div标签格式不正确,需要关闭。以下对我有用,但它需要适当的CSS文件。
<html>
<head>
<script type="text/javascript" language="javascript"
src="jquery/jquery.js"></script>
<script type="text/javascript" language="javascript"
src="jquery/jquery.ui.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function(){
$("#example").dialog({modal: true});
});
</script>
</head>
<body>
<div id="example" class="flora" title="This is my title">
I'm in a dialog!
</div>
</body>
</html>
答案 1 :(得分:0)
Wayne Khan是对的
默认行为是在调用dialog()时打开,除非您将autoOpen设置为false。
并且tvanfosson几乎正确,但默认对话框不是Modal。要显示模态窗口,您必须将 modal
选项设置为 true
为了说明,这是我今晚正在制作的small project的精简摘录:
...
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"></script>
<script type="text/javascript" src="./jquery-ui-personalized-1.6rc6.min.js"></script>
<script type="text/javascript" src="./init.js"></script>
<link rel="stylesheet" href="./css.css" type="text/css" />
<script type="text/javascript">
$(function() {
$('#exampleNode').dialog({
modal: 'true'
});
});
</script>
...
供您参考: