Heim > Fragen und Antworten > Hauptteil
$.post(url,{name:'xxx',psw:'xxx'}, function(result) { if (result) { //跳转至php页面 } }, 'json'); 如何跳转至php页面?
天蓬老师2017-05-27 17:45:14
window.location.href="";
仅有的幸福2017-05-27 17:45:14
window.location = "http://www.42du.cn";
滿天的星座2017-05-27 17:45:14
window.location.href = "";
phpcn_u15822017-05-27 17:45:14
Window.open('')
PHP中文网2017-05-27 17:45:14
新开页面:Window.open('url');当前页面打开:window.location.href="url";
window.open
window.localtion, 这其实是Location对象