欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery中AJAX请求 $.post方法的使用

程序员文章站 2023-10-31 14:16:28
使用jquery的$.post方法可以以post形式向服务器发起ajax请求。$.post方法是jquery的实用工具方法。 post和get发送方式的特点, get 方...

使用jquery的$.post方法可以以post形式向服务器发起ajax请求。$.post方法是jquery的实用工具方法。

post和get发送方式的特点, get 方法提交数据不安全,数据置于请求行,客户端地址栏可见; get 方法提交的数据大小限制在255 个字符之内。post方法提交的数据置于消息主体内,客户端不可见, post 方法提交的数据大小没有限制。

$.post方法语法

$.post(url,parameters,callback)

参数

 

url

(字符串)服务器端资源地址。

parameter

(对象)需要传递到服务器端的参数。 参数形式为“键/值”。

callback

(函数)在请求完成时被调用。该函数参数依次为响应体和状态。

返回值

xhr实例

看个简单的例子

客户端代码:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$().ready(function () {
  $('#selectnum').change(function () {
    var idvalue = $(this).val();
    //采用post方式调用服务
    $.post('server.aspx', { id: idvalue }, function (text, status) { alert(text); });
  })
})
</script>
</head>
<body>
<select id="selectnum">
  <option value="0">--select--</option>
  <option value="1">1</option>
  <option value="2">2</option>
  <option value="3">3</option>
</select>
</body>
</html>

服务端主要代码:

protected void page_load(object sender, eventargs e)
{
  if (!page.ispostback)
  {
    if (request["id"] != null && !string.isnullorempty(request["id"].tostring()))
    {
      response.write( getdata(request["id"].tostring()));
    }
  }
}
protected string getdata(string id)
{
  string str = string.empty;
  switch (id)
  { 
    case "1":
      str += "this is number 1";
      break;
    case "2":
      str += "this is number 2";
      break;
    case "3":
      str += "this is number 3";
      break;
    default:
      str += "warning other number!";
      break;
  }
  return str;
}

运行程序,结果如图:

 jquery中AJAX请求 $.post方法的使用

用httpwatcher拦截请求信息,当下拉框中选择数字时,可以截取到如下请求信息。

使用$.post方法时的截图:

 jquery中AJAX请求 $.post方法的使用

通过上图我们可以看到在post data里面有参数,说明这是一次post请求。

在服务器端状态有改变,或者是修改更新某些数据时多用post请求。