DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery ajax 局部無刷新更新數據的實現案例
jquery ajax 局部無刷新更新數據的實現案例
編輯:JQuery特效代碼     

要更新的頁面
. 代碼如下:
<!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></title>

    <script src="js/jquery.js" type="text/javascript"></script>

</head>
<body>
    <select id="lucky1" onchange="return duoduo();">
        <option value="1">第一期</option>
        <option value="2">第二期</option>
    </select>
    <div id="duoduo">
        你好</div>
       <input type="text" id="duo"  />
</body>

<script type="text/javascript">

    function duoduo() {
        $.ajax({
            type: 'post', //可選get
            url: 'ajax.aspx', //這裡是接收數據的程序
            data: 'data=' + $("#lucky1").val(), //傳給PHP的數據,多個參數用&連接
            dataType: 'html', //服務器返回的數據類型 可選XML ,Json jsonp script html text等
            success: function(msg) {
                //這裡是ajax提交成功後,程序返回的數據處理函數。msg是返回的數據,數據類型在dataType參數裡定義!
                document.getElementByIdx_x_x("duoduo").innerHTML = msg;
                //$("#duoduo").innerHTML = msg;
            },
            error: function() {
                alert('對不起失敗了');
            }
        })
    }

</script>

</html>

操作頁面
. 代碼如下:
  protected void Page_Load(object sender, EventArgs e)
    {
        if (Request.Params["data"].ToString().Equals("1"))
        {
            Response.Write("<a href=\"http://www.baidu.com\">第一期</a>");
        }
        else if (Request.Params["data"].ToString().Equals("2"))
        {
            Response.Write("<a href=\"http://www.baidu.com\">第2期</a>");
        }
    }

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved