gpt4 book ai didi

JavaScript onclick 条件表格单元格

转载 作者:行者123 更新时间:2023-11-28 02:39:36 25 4
gpt4 key购买 nike

我最近有一个problem我已经解决了。

但是,我现在遇到了不同的问题。我希望代码仅切换第二列和第三列中单元格的可见性。

我不知道如何解决这个问题,我对 JavaScript 的了解很少。

此外,让第二行和第三行中的所有单元格自动切换为不可见会很好,但不是必需的。

编辑:

为了方便起见,我仅复制了上一个问题的解决方案。

function tableclick(e) 
{
e = e || window.event;
var target = e.target || e.srcElement;
while(target != this && (!target.tagName || target.tagName != "TD")) target = target.parentNode;
if( target != this)
{
toggleVis(target)
}
}

function toggleVis(obj)
{
if ( obj.style.fontSize != "0px" )
{
obj.style.fontSize = "0px"
}
else
{
obj.style.fontSize = "16px"
}
}

最佳答案

function tableclick(e) 
{
e = e || window.event;
var target = e.target || e.srcElement;
while(target != this && (!target.tagName || target.tagName != "TD")) target = target.parentNode;
if( target != this && (target.cellIndex == 1 || target.cellIndex == 2))
{
toggleVis(target)
}
}

关于JavaScript onclick 条件表格单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12892089/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com