我想在桌面版中显示网站的移动版本。
基本上我们有2个网站m.xyz.com和xyz.com,现在我想要的是在桌面上显示m.xyz.com点击预览。


 < script>
 $('#preview_feature')。click(function(){

 $( '.faqModal')。on('shown.bs.modal',function(){

 $(this).find('iframe')。attr('src','https:/ /m.xyz.com/abc')
})
 $('。faqModal')。modal({show:true})
})
 < /脚本>

 //点击此按钮,我将展示预览网站移动版&#xA的模型< button type =“button”id =“preview_feature”class =“btn btn-info btn-lg btn”>预览功能< / button>

 <! - Modal - >
 < div class =“modal fade faqModal”id =“faqModal”role =“dialog”>
 < div class =“modal-dialog”>
 <! - 模态内容 - >
 < div class =“modal-content”>
 < div class =“modal-header”>
 < button type =“button”class =“close”data-dismiss =“modal”>& times;< / button>
 < h4 class =“modal-title”>预览< / h4>
 < / DIV>
 < div class =“modal-body”>
 < iframe style =“width:940px; height:560px; -webkit-transform:scale(1); - moz-transform-scale(1);”>< / iframe>
 < / iframe中>
 < / DIV>
 < div class =“modal-footer”>
 < button type =“button”class =“btn btn-default”data-dismiss =“modal”>关闭< / button>
 < / DIV>
 < / DIV> 
 < / DIV>
 < / DIV>
 代码>


答案 0 :(得分:0)
看到这对我有用:
<!DOCTYPE html>
<html>
<body>
<iframe src="https://en.m.wikipedia.org/wiki/Main_Page" width="400px" height="500px">
</iframe>
</body>
</html>
请尝试减小宽度,以便在使用适当的js进行移动平台重定向时,它将正常工作。