我尝试使用jQuery创建一个简单的dislog框但它不起作用。我认为它与我的其他Wowslider jQuery横幅冲突,但我尝试了很多方式,它仍然没有工作。 我试图将(jQuery)放在最后,我尝试使用document.ready
这是我从jqueryui.com获得的对话框:
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(function() {
$( "#dialog" ).dialog();
});
</script>
</head>
<body>
<div id="dialog" title="Basic 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>
这是来自wowslider的jQuery,它位于索引页面的底部:
<script type="text/javascript" src="engine1/wowslider.js"></script>
<script type="text/javascript" src="engine1/script.js"></script>