JQuery實現Ajax 根據商品名稱自動顯示價格

來源:互聯網
上載者:User

資料庫欄位:Id(主鍵,自增),Name(商品名稱),Price(商品單價)

添加資料集DataSetProducts ,添加方法:GetDataByName()

----->對應SQL:

SELECT id, name, price FROM dbo.T_Product
where name = @name

 

 建立一般處理常式:GetPrice.ashx

代碼:

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using AJAX.DataSetProductsTableAdapters;

namespace AJAX
{
    /// <summary>
    /// GetPrice 的摘要說明
    /// </summary>
    public class GetPrice : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            string name = context.Request["name"];

            var data = new T_ProductTableAdapter().GetDataByName(name); //調用DataSet中的方法
            if (data.Count <= 0)
            {
                context.Response.Write("none|0");   //豎線左邊是返回狀態,右邊是價格
            }
            else
            {
                context.Response.Write("ok|" + data.Single().price); //我們自己定義的協議格式 ok可以換成其他的字串;
            }
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}

Html頁面代碼:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Ajax完成查詢價格</title>
    <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
    <script language="javascript" type="text/javascript">
        $(function () {
            $("#Text1").blur(function () {
                var name = $("#Text1").val();
                $.post("GetPrice.ashx", { "name": name }, function (data, statusText) {
                    if (statusText == "success") {
                        var atts = data.split("|");
                        if (atts[0] == "ok") {   //atts[0]是參數;表示狀態;  
                            $("#Text2").val(atts[1]); //atts[1]是參數,表示價格;
                        } else if (atts[0] == "none") {
                            $("#Text2").val("沒有這個商品");
                        } else {
                            alert("返回格式錯誤");
                        }
                    } else {
                        alert("Ajax錯誤!");
                    }
                });
            });
        });
    </script>
</head>
<body>
    查詢名稱:<input id="Text1" type="text" /><br />
    <br />
    價&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;格:<input id="Text2" type="text" />
</body>
</html>

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.