我有以下代码,但在IE中它表示不支持trim方法。
for (var i = 0; i < here.length; i++) {
if ($(here[i]).html().trim() == "")
$(here[i]).parent().find('#content').css('width', '656px'),
$(here[i]).parent().find('#content p').css('width', '430px');
if ($(another[i]).html() != null) {
if ($(another[i]).html().trim() == "")
$(another[i]).parent().parent().css('display', 'none'),
$('#sidemenu .heading').css('background', 'none');
}
}
我该如何解决?
答案 0 :(得分:1)
较旧版本的浏览器(例如版本9之前的IE)对于在其Javascript中实现的字符串没有trim
方法。您有以下选择:
JQuery.trim
代替