首頁  >  文章  >  web前端  >  js怎麼跳到新頁面?

js怎麼跳到新頁面?

青灯夜游
青灯夜游原創
2020-07-18 15:04:5217364瀏覽

js跳到新頁面的方法:1、使用location.href="新頁面URL"來跳轉;2、使用location.replace("新頁面URL")來跳轉;3、使用location.assign("新頁面URL")來跳轉。

js怎麼跳到新頁面?

方法1:使用location.href

語法:

location.href="URL"

範例

<!DOCTYPE html>
<html>
    <head>
		<meta charset="UTF-8">
    </head> 
    <body> 
      <p>这是<i>location.href</i>方式的示例</p> 
      <button onclick="myFunc()">点击这里</button> 
        
      <!--重定向到其他网页的脚本-->   
      <script> 
         function myFunc() { 
           window.location.href="https://www.php.cn"; 
         } 
      </script> 
   </body> 
</html>

js怎麼跳到新頁面?

方法2:使用location.replace()

語法:

location.replace("URL")

範例:使用location.replace()方法跳到其他網頁

<!DOCTYPE html>
<html>
    <head>
		<meta charset="UTF-8">
    </head> 
    <body> 
      <p>这是<i>location.replace()</i>方式的示例</p> 
      <button onclick="myFunc()">点击这里</button> 
        
      <!--重定向到其他网页的脚本-->   
      <script> 
         function myFunc() { 
          location.replace("https://www.php.cn"); 
         } 
      </script> 
   </body> 
</html>

js怎麼跳到新頁面?

#方法3:使用location.assign()

語法:

location.assign("URL")

範例:使用location.assign()方法跳到其他網頁

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
    </head> 
    <body> 
      <p>这是<i>location.assign()</i>方式的示例</p> 
      <button onclick="myFunc()">点击这里</button> 
        
      <!--重定向到其他网页的脚本-->   
      <script> 
         function myFunc() { 
          location.assign("https://www.php.cn"); 
         } 
      </script> 
   </body> 
</html>

js怎麼跳到新頁面?

推薦教學:《JavaScript影片教學

以上是js怎麼跳到新頁面?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn