改js代码兼容到火狐

functioncols(table,num,isShow){for(i=0;i<table.rows.length;i++)table.rows[i].cells[nu... function cols(table,num,isShow){
for(i=0;i<table.rows.length;i++)
table.rows[i].cells[num].style.display=isShow?"inline":"none";
}
这是一个通过复选框控制表格列显示和隐藏的代码
<script>
function cols(table,num,isShow){
for(i=0;i<table.rows.length;i++)
table.rows[i].cells[num].style.display=isShow?"inline": "none";}
</script>
<INPUT type= "checkbox" onclick="cols(tb2,1,this.checked)"/> 隐藏
<INPUT type= "checkbox" onclick="cols(tb2,0,this.checked)"/> 隐藏
<TABLE id=tb2 >
。。。。。
展开
 我来答
火狐
2014-07-02 · Firefox,最快最安全的上网体验
火狐
Mozilla Firefox火狐浏览器,是一款开放安全的开源浏览器,全球拥有5亿用户。
向TA提问
展开全部
  您好!很高兴为您答疑!

稍微修改后的结果如下,火狐中测试正常:
<script>
function cols(num,isShow){
var table=document.getElementById("tb2");
//alert(table);
for(i=0;i<table.rows.length;i++)
table.rows[i].cells[num].style.display=isShow?"none": "inline";}
</script>
<input type= "checkbox" onclick="cols(0,this.checked)"/> 隐藏
<input type= "checkbox" onclick="cols(1,this.checked)"/> 隐藏
<table id="tb2">
<tr >
<td style="display: ">1.1</td>
<td style="display: ">1.2</td>
</tr>
<tr >
<td style="display: ">2.1</td>
<td style="display: ">2.2</td>
</tr>
</table>

  您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。
_我怎么知道_
2011-01-07 · 超过13用户采纳过TA的回答
知道答主
回答量:19
采纳率:0%
帮助的人:25.6万
展开全部
function cols(num,isShow) // 此处有改动,table 没了
{
var table = document.getElementById("tb2");// 改为通过标准方式获取控件
for(i=0;i<table.rows.length;i++)
{
document.getElementById("tb2").rows[i].cells[num].style.display=isShow?"inline": "none";

}
}
</script>
<INPUT type= "checkbox" onclick="cols(1,this.checked)"/> 隐藏 // 少传了 tb2 这个参数
<INPUT type= "checkbox" onclick="cols(0,this.checked)"/> 隐藏 // 少传了 tb2 这个参数
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
hanya777
2011-01-07 · TA获得超过178个赞
知道小有建树答主
回答量:184
采纳率:0%
帮助的人:174万
展开全部
不知道你具体代码怎样,我把你的代码稍微修改了:
<script>
function cols(num,isShow){
var table=document.getElementById("tb2");
//alert(table);
for(i=0;i<table.rows.length;i++)
table.rows[i].cells[num].style.display=isShow?"none": "inline";}
</script>
<input type= "checkbox" onclick="cols(0,this.checked)"/> 隐藏
<input type= "checkbox" onclick="cols(1,this.checked)"/> 隐藏
<table id="tb2">
<tr >
<td style="display: ">1.1</td>
<td style="display: ">1.2</td>
</tr>
<tr >
<td style="display: ">2.1</td>
<td style="display: ">2.2</td>
</tr>
</table>
在火狐中是可以的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
枚赫0fH
2012-12-11
知道答主
回答量:33
采纳率:0%
帮助的人:5.4万
展开全部
这个问题里的,当这一列有一个input控件的时候不能隐藏,那代码该如何控制呢
例如该列每一行有一个<input type=text id=cars name="cars" size="10" >这个控件,如何写呢,请教了!有知道的大侠说下呀!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式