文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>table.insertRow() firefox和IE下的兼容问题

table.insertRow() firefox和IE下的兼容问题

时间:2008-09-20  来源:Lovezoe

最近做了个Struts2.0的文章发布系统,使用dwr的框架,没想到在firefox下的兼容问题却不好,所以自己网上找了下才知道如何解决,本身我对js也不熟悉,web要学的东西还真多,哎。
table.insertRow()在IE下没问题 但在firefox下就得改为table.insertRow(-1)
同样其相应的insertCell()也要改为insertCell(-1)

var newTh = table.insertRow(-1);
                
                newTh.style.backgroundColor="#C8ECEC";
                newTh.align="center";
                
                //表头TD

                var newTh1 = newTh.insertCell(-1);
                var newTh2 = newTh.insertCell(-1);
                var newTh3 = newTh.insertCell(-1);
                var newTh4 = newTh.insertCell(-1);

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载