我可以在 ASP.NET 按钮上暂停回发并在完成某些任务后继续吗?
如何通过 javaScript 在 asp.net 按钮上暂停回发过程并在某些任务完成后继续?
像这样的东西:
btnRemove.Attributes["onclick"] = string.Format(@"
var itemId=$.trim($('#{0}').val());
// stopPostBack() somehow
// do some stuff with itemId
// continue post-back
", txtMyTextBox.ClientId);
How can I pause post-back process by javaScript on an asp.net button and continue after some task is completed?
Something like:
btnRemove.Attributes["onclick"] = string.Format(@"
var itemId=$.trim($('#{0}').val());
// stopPostBack() somehow
// do some stuff with itemId
// continue post-back
", txtMyTextBox.ClientId);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,您只需要从 javascript onclick 事件返回 false 即可。
例如:
Yes, you just need to return false from a javascript onclick event.
eg:
所有 onClick() 事件代码都在提交之前处理。如果 onClick 事件处理程序返回 false,该事件将执行代码,然后提交失败。如果返回true,它将执行代码,然后提交。
我认为您不需要“停止”回发。只需在返回 true 之前放置您想要的代码,该代码就会在提交之前执行。
示例:
这里的
alert()
将在提交之前执行。All onClick() event code is handled before submission. If the onClick event handler returns false, the event will execute the code, then fail to submit. If it returns true, it will execute the code, then submit.
I don't think you need to "stop" the postback. Just put the code you want before returning true and that will execute before the submission.
Example:
The
alert()
here will be executed before submission.是的,我认为通过一个技巧你可以做到这一点。
只需返回 false,为了避免回发,请初始化一个计时器来调用下一个完成工作的函数,并在最后手动触发回发。
Yes, I think with a trick you can do that.
Just return false, to avoid the post back, init a timer to call the next function that make the work, and at the end fire the post back manually.