Javascript获取innerText,对IE和FF的兼容性问题?
发布网友
发布时间:2022-04-28 12:52
我来回答
共6个回答
热心网友
时间:2022-04-21 00:35
如果div内没有其他标签完全可以使用innerHTML。
举个例子:
<div id="test">
<span style="color:red">test1</span> test2
</div>
test.innerHTML:
也就是从对象的起始位置到终止位置的全部内容,包括Html标签。
上例中的test.innerHTML的值也就是“<span style="color:red">test1</span> test2 ”。
test.innerText:
从起始位置到终止位置的内容, 但它去除Html标签
上例中的text.innerTest的值也就是“test1 test2”, 其中span标签去除了。
test.outerHTML:
除了包含innerHTML的全部内容外, 还包含对象标签本身。
上例中的text.outerHTML的值也就是<div id="test"><span style="color:red">test1</span> test2</div>
特别说明:
innerHTML是符合W3C标准的属性,而innerText只适用于IE浏览器,因此,尽可能地去使用innerHTML,而少用innerText,如果要输出不含HTML标签的内容,可以使用innerHTML取得包含HTML标签的内容后,再用正则表达式去除HTML标签,下面是一个简单的符合W3C标准的示例:
alert(document.getElementById('test').innerHTML.replace(/<.+?>/gim,''));
即可得到IE innerText的效果了
热心网友
时间:2022-04-21 01:53
一句话必杀,firefox下面没有innerText,但是你可以用textContent属性,你可以写成element.innerText || element.textContent获取文本
热心网友
时间:2022-04-21 03:27
alert(one.innerText);改为 alert(one.innerHTML);
innerText这个属性不是w3c标准,火狐不认识他
热心网友
时间:2022-04-21 05:19
两个选择:
1.把脚本统一写在<head></head>里面,
2.把函数统一写成window.onload=function(){}.
火狐会懂的。
热心网友
时间:2022-04-21 07:27
用jquery比较方便,其他方法……
热心网友
时间:2022-04-21 09:51
用JQ啊,one.text() 搞定,哦也