我需要在一个非常大的项目中使用 jQuery 创建一个对话框。在某些地方,这个项目使用 jquery 的版本与我在窗口中使用的最新版本不同。
我的代码如下所示:
在 ascx 页面上
<html>
<head>
<link type="text/css" href="css/jquery-ui-1.8.22.custom.css" rel="stylesheet" />
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.22.custom.min.js"></script>
<script type="text/javascript" src="js/myjQueryCode.js"></script>
</head>
<body>
</body>
</html>
在 myjQueryCode.js 文件中
$(document).ready(function() {
$("#dialog-form").dialog({
autoOpen: false,
height: 440,
width: 500,
modal: true,
closeOnEscape: false
});
});
在运行时,我收到错误:
Microsoft JScript 运行时错误:对象不支持属性或方法“对话框”