手機上萬能返回上一頁(wap2.0)代替history.go(-1)

來源:互聯網
上載者:User

標籤:view   pop   stat   ...   war   需要   man   功能   article   

最近在做wap2.0的手機wap,寫返回上一頁的時候,開始是用history.go(-1);

發現在手機上只有部分機器可以比如windows mobile 而在別的機器如nokia和ophone手機

上這些就不太好用了,經過左思右想終於想到了個山寨方法來解決這個流氓問題了...

不直接用手機的返回功能,而是通過讀取 referrer 上得到上一頁的連結來實現手機返回上一頁功能

代碼如下:

Javascript CODE

[javascript] view plaincopyprint?
  1. /*返回上一頁*/  
  2. function return_prepage()  
  3. {  
  4. if(window.document.referrer==""||window.document.referrer==window.location.href)  
  5. {  
  6. window.location.href="{dede:type}[field:typelink /]{/dede:type}";  
  7. }else  
  8. {  
  9. window.location.href=window.document.referrer;  
  10. }  
  11.   
  12. }  

 

在需要用的地方直接調用;

javascript:return_prepage();

 

監聽瀏覽器返回上一頁

   $(document).ready(function($) {   if (window.history && window.history.pushState) {     $(window).on(‘popstate‘, function() {      var hashLocation = location.hash;      var hashSplit = hashLocation.split("#!/");      var hashName = hashSplit[1];       if (hashName !== ‘‘) {        var hash = window.location.hash;        if (hash === ‘‘) {          alert(‘後退按鈕點擊‘);        }      }    });     window.history.pushState(‘forward‘, null, ‘./#forward‘);  } });

 

手機上萬能返回上一頁(wap2.0)代替history.go(-1)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.