<script type="text/javascript">
function browserRedirect() {
var sUserAgent = navigator.userAgent.toLowerCase();
if (/ipad|iphone|midp|rv:1.2.3.4|ucweb|android|windows ce|windows mobile/.test(sUserAgent)) {
//跳转移动端页面
window.location.href="${ctxMJiangxin}/index.html";
} else {
//跳转pc端页面
window.location.href="${ctxJiangxin}/index.html";
}
}
browserRedirect();
</script>
<script type="text/javascript">
try {
if ((navigator.userAgent.match(/(iphone|ipod|android|ios|windows phone)/i))) {
//跳转移动端页面
window.location.href="${ctxMJiangxin}/index.html";
}else{
}
} catch (e) {
}
</script>