为什么我得到错误IE Trim方法不受支持?

时间:2012-09-12 11:23:37

标签: javascript internet-explorer trim

  

可能重复:
  .trim() in JavaScript not working in IE

我有以下代码,但在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');
        }
    }

我该如何解决?

1 个答案:

答案 0 :(得分:1)

较旧版本的浏览器(例如版本9之前的IE)对于在其Javascript中实现的字符串没有trim方法。您有以下选择: