我正在尝试在加载javascript文件时将以下函数添加到window.location
。
if (!window.location.queryString) {
window.location.queryString = function(url) {
// return array of query string variables
}
}
调用此函数的代码位于jQuery doc ready函数中
如果在页面加载后过早调用它,它将返回TypeError: window.location.queryString is not a function
此代码出现在相同捆绑文件中调用它的函数之前。
为什么这会像时间问题一样?