js的兼容性问题

来源:互联网 发布:网络视听证 编辑:程序博客网 时间:2024/05/18 03:11
<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。