gpt4 book ai didi

javascript - 为什么不能使用 jquery/css/js 更改可见性?

转载 作者:行者123 更新时间:2023-11-28 13:03:45 24 4
gpt4 key购买 nike

代码:

<div><button id="Button1" runat="server" onclick="showTable()"  style="float:right">Edit</button></div>
<table style="visibility:hidden" id="Table">
<tr>
<td><buttonid="upDateBtn"runat="server"onclick="saveInfo()"style="float:left">UpDate</button></td>
</tr>
<tr><td>
<label visible="false">Head Line</label>
</td></tr>
</table>

当单击 button1 时,表格需要可见。我尝试了以下解决方案:

  1. document.getElementById("#Table").style.visibility = "visible";
  2. $("#Table").css("visibility","visible");
  3. css 中创建一个类,并使用 jQuery 按类选择表格。

没有按预期工作。我错过了什么吗?是否还有其他解决方案?

最佳答案

因为我看到您使用 runat=server 所以我认为您使用的是 .NET所以你的按钮代码应该是:

  <input type="button" value"Edit" id="button1" style="float:right"/>

代替:

  <button id="Button1" runat="server" onclick="showTable()"  style="float:right">Edit</button>  

并添加到 javscript:

  $(document).ready(function(){
$('#Button1').click( function(){
showTable();
});
});

关于javascript - 为什么不能使用 jquery/css/js 更改可见性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20782667/

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