这是我的代码
<script type="text/javascript">
$(function() {
$("#dialog").dialog();
});
</script>
<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>
并且firebug说jquery-ui-1.7.2.custom.min.js被加载。
有什么想法吗?
此致
哈维
答案 0 :(得分:1)
您的代码有效,you can see a working demo here。
您确定要包含jQuery UI的样式表吗?您需要包含下载附带的(以及相关相关文件夹中的相关图像),或使用CDN托管的文件。您可以在jQuery UI博客上找到1.7.2的各种默认主题的CDN链接:http://blog.jqueryui.com/2009/06/jquery-ui-172/(在 Google Ajax Libraries API &gt; 主题下) )
最后一点,正如评论者提到的那样,你应该accept answers to your questions,它会帮助你更快地得到你未来问题的答案。