JSとバックグラウンドのインタラクティブなメモ
4439 ワード
// ,
window.location.href = "adminindex.html?account=" + account;( , , account)
// :
(function ($) {
// ,
$.getUrlParam
= function (name) {
var reg
= new RegExp("(^|&)" +
name + "=([^&]*)(&|$)");
var r
= window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]);
return null;
}
})(jQuery);
var teacherAccount = $.getUrlParam("account");
//ajax ,
//
$.ajax({
url:URL + "searchCourseList.json",//
method:"post",// get;post
dataType:"json",
success:function(returnData) {
//
var result = returnData;
if (result.code == SUCCESS_CODE) {
var con = ""; //
$.each(result.data, function (i, item) {
// object
con += '"+item.name+"';
con += ""+item.teachername+"";
con += ""+item.classroom+"";
con += '';
});
console.log(con);
// ,
$("#courseList").html(con);
// div
}
alert("received JSON:" + JSON.stringify(data));
// json
},
error:function() {
alert("error");
}
});
$(" ").delegate(' ',' ',function() {
});
$("#optCourese").delegate('.delete','click',function() {
})//