jQuery ajax應用總結_jquery

來源:互聯網
上載者:User

一、jQuery中Ajax的調用(需要引用jQuery程式碼程式庫)。

方法1:

複製代碼 代碼如下:
$.get(url, function(data) {
        //deal with the data
});

方法2:

複製代碼 代碼如下:
jQuery.post( url, [ data ], [ success(data, textStatus, jqXHR) ], [ dataType ] )
$.post(url,postdata, function(data) {
 //deal with the data
});

方法3:

複製代碼 代碼如下:
$.ajax({
    type: "POST",// or get
    contentType: "application/json; charset=utf-8",
    url: url,
    data: "{'countryModel':" + JSON.stringify(countryModel) + "}",
    dataType: "json",//html,xml,script
    async: true, //true 表示非同步,預設就是true
    success: function(data) {
  //deal with the data 
    },
    error: function() {
        // deal with error
    }
});

二、jQuery.Form plugin Ajax(需要引用jQuery程式碼程式庫和jQuery.Form外掛程式)

基於Form表單的Ajax調用
1.ajaxForm, 這個方法在調用時不是馬上提交,只是說明調用的Form要以ajax方式提交,該方法一般在$(document).ready方法裡設定。

2.ajaxSubmit,這個方法在調用時就會馬上提交。

複製代碼 代碼如下:
var options = {
    target:     '#divToUpdate',
    url:        'comment.php',
    success:    function() {
        alert('Thanks for your comment!');
    }
};
$('#myForm').ajaxForm(options);
或$('#myForm').ajaxSubmit(options);

三、Ajax在MVC中的使用
以上兩種方法都可以用,
另外我們可以MicrosoftAjax,這就必須引用MicrosoftAjax.js, MicorsoftMvcAjax.js這兩個檔案

1.Ajax.BeginForm

複製代碼 代碼如下:
<%using (Ajax.BeginForm("action", "controll", new AjaxOptions
{
  UpdateTargetId = "ajaxdiv",
  HttpMethod = "POST"
}, new { id = "AjaxForm" }))
{ %>
<input type="text" id="EmployeeId2" />
<input type="submit" value="Submit" />
<%} %>
<div id="ajaxdiv">
</div>

2.Ajax.ActionLink

<%=Ajax.ActionLink("LinkName","action", "controll", new AjaxOptions
{
  LoadingElementId = "loadingdiv",
  UpdateTargetId = "ajaxdiv",
  HttpMethod = "POST"
});%>
<div id="ajaxdiv">
</div>
<div id="loadingdiv">
</div>

四、jquery.form與jquery.validate結合使用

前端代碼

<script type="text/javascript" language="javascript" src="http://www.jb51.net/Scripts/jquery-1.4.1.min.js"></script><script type="text/javascript" language="javascript" src="http://www.jb51.net/Scripts/jquery.validate.min.js"></script><script type="text/javascript" language="javascript" src="http://www.jb51.net/Scripts/jquery.form.js"></script><h2>  AjaxFrom</h2><div id="output1" style="color: Red;"></div><%using (Html.BeginForm("Login", "Home", FormMethod.Post, new { id = "loginForm" })) { %><table border="0" cellpadding="0" cellspacing="0">  <tr>    <td>      <%=Html.TextBox("UserEmail", "", new { @class="name required"})%>    </td>  </tr>  <tr>    <td>      <%=Html.Password("Password", "", new { @class = "required" })%>    </td>  </tr>  <tr>    <td>      <input type="submit" value="submit" />    </td>  </tr></table><%} %><script language="javascript" type="text/javascript">  $(document).ready(function () {    var opts = {      submitHandler: function (form) {        var submitOpts = {          target: '#output1',          success: function () {            alert('Thanks for your comment!');          }        };        $(form).ajaxSubmit(submitOpts);      }    };    jQuery("#loginForm").validate(opts);  });  </script>

後端Action

public PartialViewResult Login(string UserEmail, string Password){  // you code  return PartialView("Success");}

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.