首页 > 开发 > 综合 > 正文

FireFox支持innerText

2024-07-21 02:04:19
字体:
来源:转载
供稿:网友
默认firefox是不支持innertext的,不过它有一个属性textcontent的作用和innertext是一样的,使用方法如下:

document.write(document.body.textcontent);

对于习惯使用innertext的人来说有点不舒服,于是网上有人就给firefox也创建了一个innertext属性,代码如下:

<script language="javascript">
function isie(){ //ie?
if (window.navigator.useragent.tolowercase().indexof("msie")>=1)
    return true;
else
    return false;
}

if(!isie()){ //firefox innertext define
    htmlelement.prototype.__definegetter__("innertext",
    function(){
        var anystring = "";
        var childs = this.childnodes;
        for(var i=0; i<childs.length; i++) {
            if(childs[i].nodetype==1)
                //anystring += childs[i].tagname=="br" ? "/n" : childs[i].innertext;
                anystring += childs[i].innertext;
            else if(childs[i].nodetype==3)
                anystring += childs[i].nodevalue;
        }
        return anystring;
    }
    );
    htmlelement.prototype.__definesetter__("innertext",
    function(stext){
        this.textcontent=stext;
    }
    );
}
</script>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表