如何在执行.net代码之前获取一个asp:按钮来执行一些jquery?
我基本上有一个asp:按钮,它附带了一些jquery-ajax,以及一些.NET代码。我注意到如果jquery只是简单,就像显示警报一样,一切正常,但如果jquery更复杂,即ajax必须去连接数据库,它似乎不起作用,它只是执行.NET。
我认为这与速度有关? .NET代码在jQuery脚本完成之前启动了吗?
所以我的问题是,如何设置它,所以当单击asp:按钮时,jquery就可以了,jquery完成后,.net部分会运行?
答案 0 :(得分:1)
尝试使用OnClientClick方法,如果返回false,则会停止回发。
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.button.onclientclick.aspx
<asp:Button id="btn" runat="server" OnClientClick="return onclick()" text="Click" />
JavaScript的:
function onclick()
{
// do something
return false; // this will stop the postback
}
答案 1 :(得分:0)
Praveen关于异步或同步的观点(下面,已经过投票)在这里非常重要。
“OnClientClick”答案仅适用于同步内容。如果您有AJAX或Promise,我找到的最佳模式是:
1)。使用javascript停止按钮的默认行为:
OnClientClick="return false;"
2)。为按钮创建一个单独的Javascript事件处理程序:
$(document).ready(function (e) {
$("[id$='btn']").click(function(){
3)。调用客户端ASP验证器(如果没有,请跳过)。
if (Page_ClientValidate())
{
4)。到AJAX完成函数,或者在promise.then()中传递一个函数来提交触发按钮点击事件的表单
__doPostBack('<%= btn.ClientID %>', 'OnClick');
除非你正在处理Promises或AJAX,否则这一切看起来都很复杂。
以下是完整的示例页面:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="aaaaa_test.aspx.cs" Inherits="test" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function (e) {
//2). use the click event to capture the canceled submit.
$("[id$='cmdSubmit']").click(function(){
//3). Allow the asp client-side page validators to do their thing...
if (Page_ClientValidate())
{
ReturnsPromise().then(function () {
//4). once the Asynchronous stuff is done, re-trigger the postback
// and make sure it gets handled by the proper server-side handler.
__doPostBack('<%= cmdSubmit.ClientID %>', 'OnClick');
});
}
});
// very simple promise, usually this woud be an AJAXy thing.....
// a placeholder for your real promise.
function ReturnsPromise()
{
//this is just a simple way to generate a promise for this example.
return Promise.resolve($("[id$='hiddenField']").val($("[id$='txtInput']").val()));
}
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:HiddenField ID="hiddenField" runat="server" />
Input:<asp:TextBox ID="txtInput" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="valInput" runat="server" ErrorMessage="Add Text" ControlToValidate="txtInput" EnableClientScript="True" Text="Add Text"></asp:RequiredFieldValidator>
<br />
<!-- 1). use client script to stop the default button behavior with OnClientClick="return false;" -->
<asp:Button ID="cmdSubmit" runat="server" OnClick="cmdSubmit_Click" Text="Submit" OnClientClick="return false;" />
</div>
</form>
</body>
</html>
答案 2 :(得分:-1)
2,创建一个隐藏按钮,在ajax调用成功后单击jquery中的按钮。并且实际按钮返回false,因此它不会执行回发。