gpt4 book ai didi

javascript - include() 在 IE 中不起作用

转载 作者:行者123 更新时间:2023-11-30 23:58:52 24 4
gpt4 key购买 nike

我正在使用以下代码。它在 Chrome、Firefox 或 Edge 等浏览器中完美运行。但是,当我检查 IE11 时,它不起作用并破坏了所有功能。

var href = jQuery(this).attr('href');
if (href.includes('#')) {
// action
}

我认为 includes() 在 IE11 中不起作用。有解决办法吗?

最佳答案

该问题是因为所有版本的 IE 都不支持 includes():MDN Reference

相反,您可以使用更广泛支持的indexOf():

var href = $(this).attr('href');
if (href.indexOf('#') != -1) {
// action
}

您还可以将其原型(prototype)化以将 includes() 方法添加到 IE:

String.prototype.includes = function(match) {
return this.indexOf(match) !== -1;
}

关于javascript - include() 在 IE 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43139472/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com