firefox不支持innerText

ipt发现innerText在firefox上是不支持的。但IE和FF都支持innerHTML,
怎样解决firefox支持innerText,我找一些资料发现原来FF有一个方法,类似innerText的功能,
这就是textContent了,但textContent会自动去除掉多余的空格,就这点有所不同外,基本是
与innertText相同的。这个是我的见解,如有不对之处,可以大家讨论一下。
例子:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<title>UntitledPage</title>
</head>
<body>
<divid="aa">sdfasdfsd</div>
</body>
</html>
<scripttype="text/javascript">
varisie=document.all?true:false;
if(isie)
{
vardd=document.getElementById('aa').innerText;
alert(dd);
}
else
{
vardd=document.getElementById('aa').textContent;
alert(dd);
}
</script>

你可能感兴趣的:(JavaScript,html,XHTML,IE,firefox)