JqueryUI: trying to show a dialog
this is my code
<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>
and firebug says jquery-ui-1.7.2.custom.min.js is loaded.
Any idea?
Regards
Javi
Your code works, you can see a working demo here.
Are you sure you're including the stylesheet for jQuery UI as well? You either need to include the one that came with your download (and related images in their same relative folders), or use the CDN hosted ones. You can find the CDN links for 1.7.2 for the various default themes on the jQuery UI blog here: http://blog.jqueryui.com/2009/06/jquery-ui-172/ (under Google Ajax Libraries API > Themes)
One last thing, as the commenters mention above, you should accept answers to your questions, it'll help you get answers to your future questions quicker.
精彩评论