我想即时创建一个jQuery对话框。我使用这个:
var newDiv = $(document.createElement('div')); $(newDiv).html('hello there'); $(newDiv).dialog();
然后我在html标题中有这个:
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="js/jquery-ui-1.8.1.custom.min.js"></script>
当我尝试在IE7中运行JS时,我在$(newDiv).dialog()上得到以下错误;行:
对象不支持此属性或方法。
任何人都知道发生了什么事