码迷,mamicode.com
首页 > Web开发 > 详细

js的兼容性问题

时间:2014-08-16 10:59:20      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   java   使用   io   ar   

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。

js的兼容性问题,布布扣,bubuko.com

js的兼容性问题

标签:style   blog   http   color   java   使用   io   ar   

原文地址:http://www.cnblogs.com/nn-xiaoliuzi/p/3916094.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!