我想编写一个属于位置类的查询解析方法,但没有任何运气
window.location.prototype
或者
window.prototype
我的目标是按照以下方式做一些事情:
window.location.prototype.parseQuery = function(key){
//run a test on this.search to see if it contains key and return the val
}
窗口是不可变的吗?还是我没有正确引用它?
TIA