我想在按钮点击事件中在ASP.NET中调用此
jquery函数
var doRedirect = function() { location.href='http://www.example.com' }; $("#button1").click(function() { $("#label1").show(); window.setTimeout("$('#label1').fadeOut('slow',doRedirect)",10000); });
解决方法
如果您的jQuery是内联的,您可以执行以下操作:
var doRedirect = function() { location.href='http://www.example.com' }; $("#<%=button1.ClientId%>").click(function() { $("#<%=label1.ClientId%>").show(); window.setTimeout("$('#<%=label1.ClientId%>').fadeOut('slow',10000); });
如果它不是内联的(即在文件中),则需要以不同的方式获取要使用的客户端控件ID,例如将它们包装在带有ID的div中并通过div选择它们:
<div id="myId"> <asp:Label runat="server" id="label1" /> <asp:Button runat="server" id="button1" /> </div> var doRedirect = function() { location.href='http://www.example.com' }; $("#myId input").click(function() { $("#myId span").show(); window.setTimeout("$('#myId span').fadeOut('slow',10000); });
请注意,我使用输出HTML元素类型作为jQuery选择器中的后代.