单击按钮时调用jquery函数的回发

单击按钮时调用jquery函数的回发

本文介绍了单击按钮时调用jquery函数的回发的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在aspx页面中使用JQuery时遇到问题,Page是post post。我在按钮点击时写了Jquery警报消息。当我点击按钮时,我的页面是邮寄包装。我找到了解决问题的方法。

(添加结束警报消息。)

点击按钮时调用jquery函数是否还有其他解决方案可以停止postpacking。







i have a problem when i use JQuery in aspx page,Page is post packing . i have written Jquery alert message on button click. when i click the button, my page is post packing. i got a solution for my problem.
(add end of alert message.)
Is there any other solution for stop postpacking when call jquery function on button click.



$(document).ready(function(){
  $("#button1").click(function() {
     alert('welcome to Jquery');

    });

});







<asp:Button ID="Button1" runat="server" Text="Button" />

推荐答案








<asp:Button ID="Button1" runat="server" Text="Button" />



这篇关于单击按钮时调用jquery函数的回发的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 13:51