index.html中
if(document.body.clientWidth<750){
window.location.href='http://百度';
// console.log(1111)
};
//当然随时改变屏幕大小也会改变的,所以也要加上
window.addEventListener('resize',()=>{
if(document.body.clientWidth<750){
window.location.href='http://百度2';
// console.log(1111)
}
})
或者
if (/Android|webOS| iPhone | iPad | iPod |BlackBerry|opera mini|opera mobile|appleWebkit.*mobile|mobile/i.test(
navigator.userAgent)) {
window.location.href = "https://百度";
}else{
window.location.href = "https://百度2";
}