“修剪()” Internet Explorer 的 javascript 函数问题

发布于 2024-11-03 17:17:05 字数 136 浏览 1 评论 0原文

trim()Internet Explorer 中不起作用(它在 ChromeFirefox 中正常工作)。但是我需要修剪该值以防止出现空格。

trim() is not working in Internet Explorer(it's working properly in Chrome and Firefox). However I need to trim the value to prevent empty spaces.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

£冰雨忧蓝° 2024-11-10 17:17:05

我不认为JavaScript提供了trim(),是吗?一些浏览器可能实现它,并且各种库实现它。

您可以添加自己的内容,如下所示:

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

I don't think JavaScript provides trim() does it? Some browsers may implement it, and various libraries implement it.

You can add your own, something like this:

String.prototype.trim = function() {
    return this.replace(/^\s+|\s+$/g,"");
}
中性美 2024-11-10 17:17:05

如果这是一个 IE 错误,您始终可以在 JavaScript 中使用 RegEx 实现自己的解决方法,如下所示 左侧修剪功能示例 - 该示例可以展开以修剪左侧和右侧。该正则表达式应该适用于所有浏览器。

If this turns out to be an IE bug, you can always implement your own workaround using RegEx in JavaScript like this left trim function sample - the sample can be expanded to trim both left and right sides. This Regex should work in all browsers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文