技术教程
当前位置:首页 > 技术教程

用JS控制手机或者PC来访分别iframe不同的内容

( 更新:10-18   加入收藏)

function uaredirect() {
    var n = navigator.userAgent.toLowerCase();
         if (n.indexOf('android')>-1){
document.writeln('<iframe scrolling="no" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="2000" allowTransparency src="http://www.xxx.com"></iframe>');
}
         else  if (n.indexOf('iphone')>-1 || n.indexOf('iPhone')>-1 || n.indexOf('ipod')>-1 || n.indexOf('ipad')>-1 || n.indexOf('ios')>-1){
document.writeln('<iframe scrolling="no" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="2000" allowTransparency src="http://www.xxx.com"></iframe>');
}
         else {
document.writeln('<center><iframe scrolling="no" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="1450" allowTransparency src="http://www.xxx.com"></iframe></center>');
 
}
}
uaredirect();

相关阅读