
I am using the following code. It works perfectly in browsers such as Chrome, Firefox or Edge. However when I check in IE11 it does not work and breaks all the functionality.
var href = jQuery(this).attr('href');
if (href.includes('#')) {
// action
}
I think includes() does not work in IE11. Is there a solution for this?
解决方案
The issue is because includes() is unsupported in all versions of IE: MDN Reference
Instead you can use the much more widely supported indexOf():
var href = $(this).attr('href');
if (href.indexOf('#') != -1) {
// action
}
You could also prototype this to add the includes() method to IE:
String.prototype.includes = function(match) {
return this.indexOf(match) !== -1;
}
在IE中不起作用&spm=1001.2101.3001.5002&articleId=113021770&d=1&t=3&u=cf04054f6b3d47819823f3b1b9470110)
2704

被折叠的 条评论
为什么被折叠?



