好,我有一個代碼,我試圖做一個重定向,但這些都不起作用,它似乎只刷新頁面,但它沒有重定向。重定向發生了一些奇怪的事情
我簡化了代碼,看看是否有什麼東西與世界上的絕望衝突,我只留下了一個只有重定向的函數,同樣的事情仍在發生。運行該函數似乎刷新頁面,但不重定向它。
這一切都不會重定向我(我把谷歌的網頁例子) 我已經試過單獨下面的選項,但只有其中的一個作品
function sendForm(){
window.location.href = "http://www.google.es"; // DONT WORK
location.href = "http://www.google.es"; // DONT WORK
location.assign("http://www.google.es"); // DONT WORK
$(location).attr('href', "http://www.google.es"); // DONT WORK
window.location.replace("http://www.google.es"); // DONT WORK
window.open("http://www.google.es"); // YEEEEES WORK
window.open("http://www.google.es","_self"); // DONT WORK
}
只對我的作品的window.open我曾嘗試設置_self參數來模擬相同的動作,但在這種情況下它不起作用。
它看起來像頁面刷新,但重定向不。
我也把html代碼的情況下,錯誤是有
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<title>Login page</title>
<!-- Bootstrap grid -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Bootstrap grid -->
<link rel="stylesheet" href="styleLogin.css">
<script src="login.js"></script>
<script src="jquery-3.1.1.min.js"></script>
<body>
<div class="container">
<img class="img-responsive logo" id="logotipo" src="logotres.png" alt="">
<form name="login" action="" method="post">
<input type="text" id="email" placeholder="User">
<input type="password" id="pass" placeholder="Password">
<button id="send" onclick="sendForm()">Enter</button>
<div class="moreoptions">
<div class="ico">
<span class="glyphicon glyphicon-lock" aria-hidden="true"></span>
<a href="#">I forgot my password</a>
</div>
<div class="ico">
<span class="glyphicon glyphicon-save" aria-hidden="true"></span>
<a href="#">Register</a>
</div>
</div>
</form>
</div>
</body>
</html>
我有點沮喪,因爲我無法找出爲什麼這不起作用
雖然嚴重,這難道不是在每個瀏覽器工作? – krillgar
我已經在Chrome中嘗試過,Firefox和Safari – Rodrypaladin
你想完成什麼?根據你想要提交表單的名稱來判斷,然後重定向頁面,可能是基於服務器的響應。爲什麼你可以提交表單並讓服務器發送正確的重定向沒有JS? – bob0the0mighty