$.post(url,{name:'xxx',psw:'xxx'}, function(result)
{
if (result)
{
//跳转至php页面
}
}, 'json');
如何跳转至php页面?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
window.location.href = "";
Window.open('')
新开页面:Window.open('url');
当前页面打开:window.location.href="url";
window.open
window.localtion, 这其实是Location对象