跳转页面能否用post方式传递变量?js跳转页面时可以用get方式将变量放在url后面,如果采用post方式,有何办法,假设不用form?[解决办法]$.ajax({ type: "POST", url: "some.php", data: "name=John&location=Boston", success: function(msg){ alert( "Data Saved: " + msg ); }});