我正在使用Jquery Modal Popup,请参阅我在这里使用的实时代码
按Ctrl+F5几次,您将看到 div "Hello World" 的内容。
为什么它首先表明它以及如何摆脱它?
以下是我正在使用的完整代码,您可以使用此链接在此处编辑代码。
HTML
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Dialog - Default functionality</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
</head>
<body>
<input type="button" id="btn1" value="Open Jquery Modal Popup" />
<div id="dialog">
<h2>Hello World</h2>
</div>
</body>
</html>
JS
$(function() {
$("#dialog").dialog({
autoOpen: false,
width: 350,
modal: true,
resizable: false
});
$("#btn1").click(function(){
console.log("aa");
$( "#dialog" ).dialog("open");
})
});