有没有办法让.trim()在Internet Explorer 6中工作。
答案 0 :(得分:4)
这个帖子可以帮助你使它运作吗? : .trim() in JavaScript not working in IE
最后,查看kaichanvong关于IE6的消息
答案 1 :(得分:3)
为自己制作自定义函数trim()
if (typeof String.prototype.trim !== 'function') {
String.prototype.trim = function(s) {
return s.replace(/^\s+|\s+$/g, "");
}
}
答案 2 :(得分:0)
您可以在此处找到答案:Should i modify the prototype of String?