jquery asp.net 按钮可见性

发布于 2024-10-15 18:37:47 字数 733 浏览 2 评论 0原文

有一些这样的代码:

if ( bValid ) { 
      $( this ).dialog( "close" );
$("#btnExcel").show(); }

和 .aspx 看起来像:

  <form id="form1" runat="server">
                    <input id="inpHide" type="hidden" runat="server" />
                    <asp:Button ID="btnExcel" runat="server" Text="Excel" AccessKey="E" BorderWidth="0px"
                        OnClick="btnExcel_Click" ToolTip="Excel" Visible="false" />
                    </form>

`bValid` is some part of code

为什么这不起作用? 可以做些什么来解决它。 使按钮可见?

可能是它无法访问,因为:

var button = $('#btnExcel')[0]; 
                        alert(button);

显示:未定义!

寻求帮助。

There is some code like this :

if ( bValid ) { 
      $( this ).dialog( "close" );
$("#btnExcel").show(); }

and .aspx look like :

  <form id="form1" runat="server">
                    <input id="inpHide" type="hidden" runat="server" />
                    <asp:Button ID="btnExcel" runat="server" Text="Excel" AccessKey="E" BorderWidth="0px"
                        OnClick="btnExcel_Click" ToolTip="Excel" Visible="false" />
                    </form>

`bValid` is some part of code

Why this doesnt work ?
What can be done to work it out.
To make button visisble ?

may be its not accessible because :

var button = $('#btnExcel')[0]; 
                        alert(button);

shows : undefined !

Looking for help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

秋凉 2024-10-22 18:37:47

您不能在服务器端将按钮设置为 Visible="false"。也就是说,在您的 ASPX 页面中,您需要将其设置为 Visible="true",否则按钮不会呈现为 html。

您可以将按钮上的样式属性(或 CssStyle 属性)设置为 style="display:none;"然后事情就会成功

<asp:Button ID="btnExcel" runat="server" Text="Excel" AccessKey="E" BorderWidth="0px"
                        OnClick="btnExcel_Click" ToolTip="Excel" Visible="true" style="display:none;" />

You can't have the button as Visible="false" on the server side. That is in your ASPX page you need to have it Visible="true" because otherwise the button is not rendered to html.

You could set the style attirbute (or CssStyle attirbute) on your button to style="display:none;" and then things will work

<asp:Button ID="btnExcel" runat="server" Text="Excel" AccessKey="E" BorderWidth="0px"
                        OnClick="btnExcel_Click" ToolTip="Excel" Visible="true" style="display:none;" />
谁把谁当真 2024-10-22 18:37:47

您可以将按钮的显示设置为无吗?

Can you set the button's display to none?

拥抱影子 2024-10-22 18:37:47

这是因为 ASP.Net 生成的服务器控件的 ID 在浏览器中是不同的。在浏览器中查看 HTML 源代码,找到正确的控件 ID 并在 jQuery 代码中使用它。您还可以尝试 ASP.Net 的 ClientID 功能,

了解更多信息:http://forums. asp.net/p/1522697/3664258.aspx

Thats because the IDs of server controls generated by ASP.Net is different in the browser. View the HTML source in the browser, find the correct control ID and use that in the jQuery code. You can also try ClientID function of ASP.Net

See this for more: http://forums.asp.net/p/1522697/3664258.aspx

初见你 2024-10-22 18:37:47

btnExcel 将被破坏,因为它是服务器端控件。

获取损坏的 id,如 document.getElementByid(<%=btnExcel.ClientID%>)

btnExcel will be mangled since its a server side control.

Obtain the mangled id as document.getElementByid(<%=btnExcel.ClientID%>)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文