欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

随机显示个性签名的js代码(兼容ie,firefox)

程序员文章站 2023-12-09 23:47:45
原网页中用的是innertext,萬仟网这里给替换成了innerhtml是为了简单的支持firefox,因为firefox不支持innertext,但已经有办法让firef...

原网页中用的是innertext,这里给替换成了innerhtml是为了简单的支持firefox,因为firefox不支持innertext,但已经有办法让firefox支持innertext了,兼容代码如下。

复制代码 代码如下:

//让mozilla支持innertext
try{
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;
else if(childs[i].nodetype==3)
anystring += childs[i].nodevalue;
}
return anystring;
}
);
}
catch(e){}

以下使用innerhtml实现的代码,其它更多的地方,大家自行测试因时间关系,不多说了。

[ctrl+a 全选 注:如需引入外部js需刷新才能执行]