Posts Tagged ‘ajax’

window.open打开新窗口

二月 6th, 2010 No comments

$.ajax({
url:form.getAttribute(“action”),//url值;
type:”POST”,
data:param,
dataType:’json’,
success:function(json) {

location.href=json.url;//原来的写法
window.open(json.url,”,’width=1124, height=680,resizable=yes’);//改后的写法 ,弹出新窗口;

}
});