我需要确保$.getScript()
JQuery方法如何正常工作,
是这个方法检查脚本是否在加载它之前加载它,或者每次调用方法时都会加载外部脚本。
我试着看看这个方法source
答案 0 :(得分:2)
来自the very documentation you linked to:
默认情况下,$.getScript()
会将缓存设置设置为false
。这会将带时间戳的查询参数附加到ensure that the browser downloads the script each time it is requested
的请求URL。您可以使用$.ajaxSetup()
全局设置缓存属性来覆盖此功能:
$.ajaxSetup({
cache: true
});