Posted on 2012-11-01 10:30
谁用我名字啦? 阅读(204)
评论(0) 编辑 收藏 所属分类:
JQuery
http://www.w3school.com.cn/jquery/jquery_ref_attributes.asp
function name() {
var parameters = {
key1 : 'value1',
key2 : 'value2'
};
$.ajax( {
type : 'POST',
url : '',
data : parameters,
dataType : 'text',
success : function(data) {
},
error : function(xhr) {
alert('页出错\n\r' + xhr.responseText);
}
});
}