我是 javascript 新手,并试图在页面打开时打开一个简单的对话框,但它只是显示
对话框的文本就好像它是一个普通的段落,没有对话框。这是我的 index.html:
<html xmlns=\ "http://www.w3.org/1999/xhtml\" xml:lang=\"en\">
<head>
<META HTTP-EQUIV="Content-Script-Type" CONTENT="text/javascript">
<script type='text/javascript' src='js/jquery.js'></script>
<title>Welcome to Jetty-9</title>
<style type="text/css" title="maincss">
@import url(maincss.css);
</style>
<script type="text/javascript">
$(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>
</body>
</html>
而我的 maincss.css 只是为 body 放置了一个背景图像,而 js/jquery.js 文件是 jquery 的最新版本,我通过加载页面,查看页面源代码,然后打开来确保它是正确链接的点击js文件