码迷,mamicode.com
首页 > Windows程序 > 详细

转 ? C#中jQuery Ajax实例(一)

时间:2017-03-07 11:55:08      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:静态   rip   参数   min   ror   ashx   实例   event   出错   

目标:在aspx页面输入两参数,传到后台.cs代码,在无刷新显示到前台

下面是我的Ajax异步传值的第一个实例

1.前台html代码:

技术分享
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>Ajax实例1</title>
    <script src="Scripts/jquery-1.7.1.min.js"></script>
    <script type="text/javascript">
        $(function () {
            $("#btn1").click(function () {
                var txtparam1 = $("#txtParam1").val();
                var txtparam2 = $("#txtParam2").val();

                $.ajax({
                    url: "demo1.aspx/AjaxMethod",//发送到本页面后台AjaxMethod方法
                    type: "POST",
                    dataType: "json",
                    async: true,//async翻译为异步的,false表示同步,会等待执行完成,true为异步
                    contentType: "application/json; charset=utf-8",//不可少
                    data: "{param1:‘" + txtparam1 + "‘,param2:‘" + txtparam2 + "‘}",
                    success: function (data) {
                        $("#result").html(data.d);
                    },
                    error: function () {
                        alert("请求出错处理");
                    }
                });

            });
        });
    </script>
</head>
<body>
    <form id="form1" runat="server">
        参数1:<input type="text" id="txtParam1" value="" /><br />
        参数2:<input type="text" id="txtParam2" value="" /><br />
        <input type="button" id="btn1" value="提交"/><br />
        <div id="result"></div>
    </form>
</body>
</html>
技术分享

2.后台代码:

技术分享
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace AjaxDemo
{
    public partial class demo1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
        }

        //type方式必须是post,方法必须是静态的,方法声明要加上特性[System.Web.Services.WebMethod()],传递的参数个数也应该和方法的参数相同。
        [System.Web.Services.WebMethod()]
        public static string AjaxMethod(string param1, string param2)
        {
            return "参数1为:"+param1+",参数2为:"+param2;
        }
    }
}
技术分享

3.运行效果:

技术分享

4.输入数据,点击提交后:

技术分享

 5.注意:

第1步中contentType: "application/json; charset=utf-8"这句不可少!不设置这个,json也是返不回来的

 

当然,你也可以如下这种Post传值格式写:

 

var data={"name":"Tom","age":"20"};
var url="XXX.ashx"
$.post(url,data,function (){alert("ok!")});

转 ? C#中jQuery Ajax实例(一)

标签:静态   rip   参数   min   ror   ashx   实例   event   出错   

原文地址:http://www.cnblogs.com/janeaiai/p/6513798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!