0

可能重复:
JavaScript 中的 .trim() 在 IE 中不起作用

我有以下代码,但在 IE 中它说不支持修剪方法。

    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');
        }
    }

我如何解决它?

4

1 回答 1

1

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

于 2012-09-12T11:27:07.007 回答