当前位置: 代码迷 >> Web前端 >> jquery集锦
  详细解决方案

jquery集锦

热度:168   发布时间:2013-09-29 11:07:08.0
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、

  相关解决方案