gpt4 book ai didi

javascript - 显示 :none property not working in firefox and chrome

转载 作者:太空宇宙 更新时间:2023-11-03 21:52:47 25 4
gpt4 key购买 nike

<tr style="height:5px" id="TRRSHeaderTrialBar" name="TRRSHeaderTrialBar" style='display:none'>
<tr id="TREmail" name="TREmail" style="height:1px;" nowrap style='display:none'>

我使用上面的代码来隐藏栏,它在 IE 中工作正常但在 firefox 和 chrome 中没有所以我用了

document.getElementById("TREmail").style.display = "none";
document.getElementById("TRRSHeaderTrialBar").style.display = "none";

TRRSHeaderTrialBar 包含标签页,TREmail 包含两个按钮。当页面加载时,TRRSHeaderTrialBar 工作正常,但 TREmail 在页面开始加载时显示按钮。加载完成后隐藏。

我想在页面加载时隐藏这些按钮。

最佳答案

must not使用多个样式属性。而不是

 <tr style="height:5px" ... style='display:none'>

使用

 <tr style="height:5px; display:none">

关于javascript - 显示 :none property not working in firefox and chrome,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16190936/

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