gpt4 book ai didi

javascript - 错误 : Object doesn't support property or method 'trimLeft'

转载 作者:行者123 更新时间:2023-11-29 23:54:29 28 4
gpt4 key购买 nike

不确定为什么会出现此错误:

Object doesn't support property or method 'trimLeft' when browse with IE

我的代码是:

var checkTrimLeadingWhiteSpace = function(str) {
if (str && ignoreLeadingWS) {
return str.trimLeft();
}

return str;
};

最佳答案

作为MDN建议 trimLeft 函数是非标准的,应该在没有回退的情况下避免使用。

但是,你可以这样写:

var checkTrimLeadingWhiteSpace = function(str) {
if (str && ignoreLeadingWS) {
return str.replace(/^\s+/, "");
}
return str;
};

replace(/^\s+/, "") 将删除字符串开头的所有空格。

关于javascript - 错误 : Object doesn't support property or method 'trimLeft' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42021142/

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