如果目标网址具有特定值,则如何检测目标网址并对其进行编辑:
if($intended_url == 'http://.../logout')
{
//forget or update it
$intended_url = '/home';
}
答案 0 :(得分:3)
Laravel为预期的网址设置url.intended
会话变量。
你可以这样做:
Route::get('/logout', function (){
if (Session::get('url.intended')) == 'http://example.com/logout')
{
Session::put('url.intended', 'http://example.com/home');
}
});
答案 1 :(得分:-2)
使用...
if (location.href =="http://google.com"){
alert('its google');
} else{
alert('location is ' + location.href);
};
window.location是获取此值的对象。
您可以使用
进行指定location.href = "http://hotmail.com";