作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要 IE8 中的 trim()
函数,但它仅在 IE9 中可用。我如何自己将其添加到 IE8 中?我听说过匀场或类似的东西,但它是如何工作的?
我目前正在编写这段代码:
var trim = String.trim || function (str) {
return x.replace(/^\s+|\s+$/gm,'');
}
但是我需要将所有 str_variable.trim()
替换为 trim(str_variable)
。我还能如何编写 trim
函数并将其添加到字符串中?
最佳答案
String.prototype.trim = String.prototype.trim || function () {
return this.replace(/^\s+|\s+$/gm,'');
}
但是,我怀疑这是否涵盖与 native 方法相同的功能。
最好使用polyfill at MDN :
if (!String.prototype.trim) {
(function(){
// Make sure we trim BOM and NBSP
var rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
String.prototype.trim = function () {
return this.replace(rtrim, "");
}
})();
}
关于javascript - 如何将缺少的 JavaScript 函数添加到 IE8 中的所有字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26321442/
我是一名优秀的程序员,十分优秀!