标签:style http os java 使用 io ar 文件 数据
1.文档加载后执行:
$(document).ready(function(){//onload();});
或$(function(){//onload();})
2. 选择器使用:
3. ajax操作:
$.post(url,data,rend) 发送异步post请求,三个参数依次为请求url,向后台传递的数据对象,异步请求返回后执行的回调函数;
jQuery.post(url,[data],[callback],[type])
参数 | 描述 |
---|---|
url | 待载入页面的 URL 地址。 |
data | 待发送 Key / value 参数。 |
callback | 载入成功时回调函数。 |
type | 返回内容格式,xml, html, script, json, text, _default。 |
该函数是简写的 Ajax 函数,等价于:
$.ajax({ type: ‘POST‘, url: url, data: data, success: success, dataType: dataType });
根据响应的不同的 MIME 类型,传递给 success 回调函数的返回数据也有所不同,这些数据可以是 XML root 元素、文本字符串、JavaScript 文件或者 JSON 对象。也可向 success 回调函数传递响应的文本状态。
$.load() 方法载入远程 HTML 文件代码并插入至 DOM 中。默认使用 GET 方式 - 传递附加参数时自动转换为 POST 方式。
load(url,[data],[callback])
参数 | 描述 |
---|---|
url | 待载入的 HTML 网页网址。 |
data | 发送至服务器的 key/value 数据。在 jQuery 1.3 中也可以接受一个字符串了。 |
callback | 载入成功时执行的回调函数。 |
.serialize()将表单内容序列化为字符串。
.serialize() | 将表单内容序列化为字符串。 |
.serializeArray() | 序列化表单元素,返回 JSON 数据结构数据。 |
标签:style http os java 使用 io ar 文件 数据
原文地址:http://www.cnblogs.com/doit8791/p/3940269.html