jquery绑定点击事件
我的代码有问题
if (text.length < 1)
<前><代码> { args.IsValid = false; $('#<% = cmdSaveRequest.ClientID()> %>').removeAttr('click'()); } 别的 { $('#<% = cmdSaveRequest.ClientID()> %>').click( savingData()); args.IsValid = true; }
当我分配点击事件时
$('#<% = cmdSaveRequest.ClientID() %>').click( savingData());
它执行保存数据功能 有没有什么方法可以将单击事件绑定到按钮,但执行函数时只绑定它,然后在用户单击按钮后执行该函数?
I am having a problem with my code
if (text.length < 1)
{ args.IsValid = false; $('#<% = cmdSaveRequest.ClientID()> %>').removeAttr('click'()); } else { $('#<% = cmdSaveRequest.ClientID()> %>').click(savingData()); args.IsValid = true; }
when I assign click event like
$('#<% = cmdSaveRequest.ClientID()
%>').click(savingData());
it executes the saving data function
Is there any way to bind the click event to button but whiteout executing the function just bind it and after user clicks the button then the function executes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
通过
savingData 不使用括号
Try
No paranthesis by
savingData