超多的常用JavaScript网页技巧代码,比如在网页上打开一个文件对话框,添加、整理收藏夹、打印网页、另存为、查看网页属性、JS查看网页源文件、语言设置、JS刷新网页(等同于按F5)、网页前进、后退等功能,有一些是非常常用的,现在用不上的话,先收藏吧:
你可以将以上代码保存成网页HTML格式,双击运行看效果。
<!--在网页中打开文件-->
<input name=Button onClick=document.all.WebBrowser.ExecWB(1,1) type=button value=打开>
<OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
<!--另存为-->
<input name=Button onClick=document.all.WebBrowser.ExecWB(4,1) type=button value=另存为><OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
<!--查看属性-->
<input name=Button onClick=document.all.WebBrowser.ExecWB(10,1) type=button value=属性><OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
<!--打印网页-->
<input name=Button onClick=document.all.WebBrowser.ExecWB(6,1) type=button value=打印><OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
<!--页面设置-->
<input name=Button onClick=document.all.WebBrowser.ExecWB(8,1) type=button value=页面设置><OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
<!--刷新网页-->
<input type=button value=刷新 name=refresh onclick="window.location.reload()">
<!--导入收藏夹-->
<input type="button" name="Button" value="导入收藏夹" onClick=window.external.ImportExportFavorites(true,);>
<!--导出收藏夹-->
<input type="button" name="Button3" value="导出收藏夹" onClick=window.external.ImportExportFavorites(false,);>
<!--加入收藏夹-->
<INPUT name=Button2 onclick="window.external.AddFavorite(location.href, document.title)" type=button value=加入收藏夹>
<!--整理收藏夹-->
<INPUT name=Submit2 onclick="window.external.ShowBrowserUI(OrganizeFavorites, null)" type=button value=整理收藏夹>
<!--查看网页源文件-->
<INPUT name=Button onclick=window.location = "view-source:" + window.location.href type=button value=查看源文件>
<!--语言设置-->
<INPUT name=Button onclick="window.external.ShowBrowserUI(LanguageDialog, null)" type=button value=语言设置>
<!--网页前进-->
<INPUT name=Submit onclick=history.go(1) type=submit value=前进>
<!--网页后退-->
<INPUT name=Submit2 onclick=history.go(-1) type=submit value=后退>
延伸阅读:
·JS 实现图片大小控制技巧
·JS实用经典使用技巧
·
·
·js常用技巧全套代码
·