扫码关注官方订阅号
$.post(url,{name:'xxx',psw:'xxx'}, function(result) { if (result) { //跳转至php页面 } }, 'json'); 如何跳转至php页面?
小伙看你根骨奇佳,潜力无限,来学PHP伐。
window.location.href="";
window.location.href = "";
Window.open('')
新开页面:Window.open('url');当前页面打开:window.location.href="url";
window.open
window.localtion, 这其实是Location对象
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
window.location.href = "";
Window.open('')
新开页面:Window.open('url');
当前页面打开:window.location.href="url";
window.open
window.localtion, 这其实是Location对象