$(document).ready(function(){
$("#qrcodeTable").qrcode({
render : "table",
text : "https://demoall.kuaituiyun.cn/700/",
width:"200",
height:"200"
});
var hidemobilebtn=document.getElementById("hidemobile");
var showmobilebtn=document.getElementById("showmobile");
var mobileframe=document.getElementById("mobileFrame");
if(!hidemobilebtn) return false;
if(!showmobilebtn) return false;
if(!mobileframe) return false;
hidemobilebtn.onclick=function(){
mobileframe.style.display="none";
showmobilebtn.style.display="block";
}
showmobilebtn.onclick=function(){
this.style.display="none";
mobileframe.style.display="";
}
});
document.getElementById("mobileFrame").getElementsByTagName("iframe")[0].onload=function(){this.style.width="301px";}