jquery asp.net 按钮可见性
有一些这样的代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您不能在服务器端将按钮设置为 Visible="false"。也就是说,在您的 ASPX 页面中,您需要将其设置为 Visible="true",否则按钮不会呈现为 html。
您可以将按钮上的样式属性(或 CssStyle 属性)设置为 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
您可以将按钮的显示设置为无吗?
Can you set the button's display to none?
这是因为 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
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%>)