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

原网页中用的是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实现的代码,其它更多的地方,大家自行测试因时间关系,不多说了。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-cn">
<head>
</head>
<body>
<div id="blogTitle">数据载入中......</div> <script language="javascript">
zzaxwTitles = new Array('生活的理想,就是为了理想的生活', '好好扮演自己的角色,做自己该做的事', '服务器之家-www.zzaxw.com');
TitleId = Math.floor(Math.random()*zzvipsTitles.length);
document.getElementById("blogTitle").innerHTML =zzaxwTitles[TitleId];
</script>
</body>
</html>
© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发

请登录后发表评论