js的兼容性问题
innerHTML和innerTEXT的使用问题
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script src="jquery-1.3.2.min.js" type="text/javascript"></script> <script type="text/javascript"> function testHtml() { var info_str = "<tr><td colspan=‘4‘>Error</td></tr>"; document.getElementById(‘info‘).innerHTML = info_str;//IE这一行会出错. $("#info").html(info_str);//用jquery则IE/FF都没有问题 } </script> </head> <body> <input type="button" value="Test innerHTML" onclick="testHtml()" /> <table id="students" class="tb02" width="100%" border="1" cellspacing="1" > <thead> <tr><td>name</td><td>age</td><td>sex</td><td>interest</td></tr> </thead> <tbody id="info"> <tr><td colspan=‘4‘>Right</td></tr> </tbody> </table> </body> </html>
在IE中以下元素的innerHTML是只读的:col、 colgroup、frameset、html、 head、style、table、tbody、 tfoot、 thead、title 与 tr。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。