jquery汇总
1、jquery弹层方式:
//
var returndata = window.showModalDialog("/child.jsp", reqObj, "dialogHeight: 300px; dialogWidth: 800px; edge: Raised; center: Yes; help: No; resizable: no; status: No;");2、jquery ajax提交方式:
var params={};
$j.ajax({
url:url,
data:params,
async:false, //false-同步 true-异步
cache: false, //false-清缓存 true-不清缓存
success:function(data){},
})3、