如果你曾经使用过JavaScript,你就会知道Internet Explorer没有为Array.prototype.indexOf()[包括Internet Explorer 8]实现ECMAScript函数。这不是一个大问题,因为您可以使用以下代码扩展页面上的功能。
Array.prototype.indexOf = function(obj, start) {
for (var i = (start || 0), j = this.length; i < j; i++) {
if (this[i] === obj) { return i; }
}
return -1;
}
我应该什么时候实现这个?
我是否应该用下面的检查将它包装在我的所有页面上,检查原型函数是否存在,如果不存在,继续扩展数组原型?
if (!Array.prototype.indexOf) {
// Implement function here
}
或者做浏览器检查,如果是ie,就实现它?
//Pseudo-code
if (browser == IE Style Browser) {
// Implement function here
}
这是我的实现。实际上,在页面上的任何其他脚本之前添加这个脚本。即在您的master中获取Internet Explorer 8的全局解决方案。我还添加了trim函数,这似乎是在分配框架中使用的。
<!--[if lte IE 8]>
<script>
if (!Array.prototype.indexOf) {
Array.prototype.indexOf = function(obj, start) {
for (var i = (start || 0), j = this.length; i < j; i++) {
if (this[i] === obj) {
return i;
}
}
return -1;
};
}
if(typeof String.prototype.trim !== 'function') {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, '');
};
};
</script>
<![endif]-->
这是我的实现。实际上,在页面上的任何其他脚本之前添加这个脚本。即在您的master中获取Internet Explorer 8的全局解决方案。我还添加了trim函数,这似乎是在分配框架中使用的。
<!--[if lte IE 8]>
<script>
if (!Array.prototype.indexOf) {
Array.prototype.indexOf = function(obj, start) {
for (var i = (start || 0), j = this.length; i < j; i++) {
if (this[i] === obj) {
return i;
}
}
return -1;
};
}
if(typeof String.prototype.trim !== 'function') {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, '');
};
};
</script>
<![endif]-->