“修剪()” Internet Explorer 的 javascript 函数问题
trim()
在 Internet Explorer
中不起作用(它在 Chrome
和 Firefox
中正常工作)。但是我需要修剪该值以防止出现空格。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不认为JavaScript提供了trim(),是吗?一些浏览器可能实现它,并且各种库实现它。
您可以添加自己的内容,如下所示:
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:
如果这是一个 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.
看看@这个 -> 修剪在 IE 中不起作用
Have a look @ this -> Trim not working in IE