答案 0 :(得分:4)
似乎是they are not。建议的解决方法是重新定义函数:
$.getScript = function(url, callback, cache) {
$.ajax({
type: "GET",
url: url,
success: callback,
dataType: "script",
cache: cache
});
};
可以像这样使用:
$.getScript('/foo.js', function() { }, true);