我試圖走出這個jQuery插件http://plugins.jquery.com/project/stylish-select-box/的Jquery +原型noConflict()模式,打破Array.prototype.indexOf
它的作品不錯,但與原型+的jQuery在noConflict模式 這一功能打破了別人的腳本
Array.prototype.indexOf = function (obj, start) {
for (var i = (start || 0); i < this.length; i++) {
if (this[i] == obj) {
return i;
}
}
};
有幫助嗎?
數組已經有indexOf方法嗎?你爲什麼要嘗試更換它?很多腳本都將依賴於預期的行爲 – 2009-10-18 15:48:10