熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

javascript實現頁面跳轉的常用方法與代碼實例

2022-06-13   來源: JSP教程 

  文章介紹了現在常用的頁面跳轉實現的方法包括了js php aspnet這三種的實現代碼有需要了解的朋友可以參考一下

  先來介紹一下關於js的做法

 代碼如下 復制代碼

  function toUrl(ul){
if(“” == ul || null==ul){
         alert(“感謝關注”);
      }else{
                 
                  windowopen(ul);//這是跳出新的窗口

  // windowlocationhref=ul;//這是直接在當前頁跳轉

  }
               return;
}  

  這個是一個windowopen來實現的點擊彈出一個窗口哦

  javascript中彈出選擇框跳轉到其他頁面

 代碼如下 復制代碼 <script language="javascript">
<!
function logout(){
if (confirm("你確定要注銷身份嗎?是-選擇確定選擇取消")){
windowlocationhref="logoutasp?act=logout"
}
}
>
</script>

  會提示用戶是否確認通出如果點擊是就會跳到logoutasp?act=logout 這個頁面了

  看看利用html refresh來跳轉

 代碼如下 復制代碼 <?php
$url = "
if (!isset($url))
{
exit(沒有要跳轉的地址呦);
}
?>

  <META HTTPEQUIV="REFRESH" CONTENT="; URL=<?php echo $url;?> ">

 代碼如下 復制代碼 php的header()來實現
<?php
$url = "
if (isset($url))
{
Header("Location: $url");
}
?>

  在使用php header時要注意一點的就是必須前面沒有任何輸出否則會出錯的哦(php header()用法)

  
aspnet 跳轉方法

 代碼如下 復制代碼

  ResponseRedirect("indexaspx"); 這個方便多了


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20211.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.