gpt4 book ai didi

javascript - trim() 函数在 IE8 中不起作用?

转载 作者:IT王子 更新时间:2023-10-29 03:22:29 26 4
gpt4 key购买 nike

每当我在字符串上使用 trim() 函数时,它在 Chrome 和 Firefox 上工作正常,但我在 IE8 中收到错误消息:

Object doesn't support this property or method

谁能告诉我为什么会发生这种情况以及是否有解决方法?

最佳答案

IE8 不支持 trim 功能。这是一个 polyfill:

if(typeof String.prototype.trim !== 'function') {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, '');
};
}

关于javascript - trim() 函数在 IE8 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11219731/

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