手机网站站 转成app,在网上找到的代码,不太看得懂,不知道有没有用,希望手机网站转App的朋友试试,给我个反馈。<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ""> <html xmlns=""> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> </head>  <body> <script language="JavaScript"> function toDesktop(sUrl,sName){ try { var WshShell = new ActiveXObject("WScript.Shell"); var oUrlLink = WshShell.CreateShortcut(WshShell.SpecialFolders("Desktop") + "\\" + sName + ".url"); oUrlLink.TargetPath = sUrl; oUrlLink.Save(); } catch(e) { alert("请点击弹出对话框的:是 "); } } </script> <input name="btn" type="button" id="btn" value="把百度创建快捷方式到桌面" onClick="toDesktop('http:\//www.baidu.com/','百度一下,你就知道!')"> <input name="btn" type="button" id="btn" value="C盘" onClick="toDesktop('file:\//C:','C盘')">  </body> </html> 
方法2:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "  transitional.dtd"> <html xmlns=""> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>创建博客快捷方式到桌面</title> </head>  <body> <?php $Shortcut = "[InternetShortcut] URL=http://www.2d30.cn IconFile=http://www.2d30.cn/favicon.ico IconIndex=0 HotKey=1613 IDList= [{000214A0-0000-0000-C000-000000000046}] Prop3=19,2"; header("Content-Type: application/octet-stream"); header("Content-Disposition: attachment; filename=蜕变无忧.url"); echo $Shortcut; ?>   <a href="">发送到桌面</a> </body> </html>以上就是手机网站转化app应用的代码。