标签:style os io 数据 ar cti c type
一、$表示jquery对象
二、样本
1.ajax进行json交互
$.ajax({
url : path+"expressDic.do?parentId="
+ parentId,
type : ‘post‘,
dataType : ‘json‘,
timeout : 5000,
error : function() {
alert(‘加载数据异常,请重试!‘);
},
success : function(data) {
$.each(eval(data), function(i, item) {
$(
"<option value=‘" + item.districtId + "‘>"
+ item.districtName + "</option>").appendTo(
citySelect);
});
}
});
标签:style os io 数据 ar cti c type
原文地址:http://my.oschina.net/u/1458864/blog/298013