vue 自動識別PC、移動端,並跳轉到對應頁面


方法一:

index.html中head添加

<script type="text/javascript">
        if(/Android|webOS| iPhone | iPad | iPod |BlackBerry|opera mini|opera mobile|appleWebkit.*mobile|mobile/i.test(
               navigator.userAgent)) {
                 window.location.href = "域名地址/mobile/index.html";
                }
    </script>

 

方法二:

app.vuehead中添加

<!--自動識別PC、移動-->
    <script src="static/js/uaredirect.js" type="text/javascript"></script>
    <!--設置移動端地址-->
        <script type="text/javascript">uaredirect("https://chaopengjiankang.com/m/index.html");</script>

static文件夾中創建js文件夾,添加以下內容

function uaredirect(murl){
try {
if(document.getElementById("bdmark") != null){
return;
}
var urlhash = window.location.hash;
if (!urlhash.match("fromapp")){
if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))) {
location.replace(murl);
}
}
} catch(err){}
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM