我正在使用 jQuery 1.4.2 版本,并且我的 aspx 页面中有以下代码。除了 IE 9 之外,它在所有浏览器中都可以正常工作
$(document).ready(function() {
$.getScript("/MyScripts/ajaxpro/scripts.js")
.done(function(script, textStatus) {
})
.fail(function(jqxhr, settings, exception) {
});
});
我收到以下错误:
SCRIPT5007: Unable to get value of the property 'done': object is null or undefined
我无法弄清楚这一点。有什么想法吗?