修复 Internet Explorer 的 Array.indexOf()
使用 JavaScript 时,您可能会遇到缺少 Array.prototype.indexOf( )在 Internet Explorer 版本(最高 IE8)中。为了解决这个问题,您可以使用以下代码扩展其功能:
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 }
上述方法是 MDC 推荐的出于兼容性原因。
一般不建议使用浏览器检测代码,例如:
if (browser == IE Style Browser) { // Implement function here }
以上是如何修复旧版 Internet Explorer 中缺少 `Array.prototype.indexOf()` 的问题?的详细内容。更多信息请关注PHP中文网其他相关文章!