1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 关于如何设置收藏本站和设为首页

关于如何设置收藏本站和设为首页

时间:2020-12-20 10:10:30

相关推荐

关于如何设置收藏本站和设为首页

这次光伏网站项目中设置收藏本站和设为首页由本人来做,这个功能在以后的项目中应该会常用到,所以这里我将其整理出来。

收藏本站

当需要收藏某一个网站时,可以使用如下函数:

function AddFavorite(title, url) {try {window.external.addFavorite(url, title);}catch (e) {try {window.sidebar.addPanel(title, url, "");}catch (e) {$.messager.alert('警告','请点击地址栏上的[☆]收藏地址,或者使用快捷键:Ctrl+D 收藏!','warning');}}}

通过在网上查阅资料得知:在js中可以通过window.external.aaaa()来调用浏览器提供的外部方法aaaa。常用的还有下面一些方法

<INPUT οnclick='window.external.ImportExportFavorites(true,"http://localhost");' type=button value=导入收藏夹> <INPUT οnclick='window.external.ImportExportFavorites(false,"http://localhost");' type=button value=导出收藏夹> <INPUT οnclick="window.external.ShowBrowserUI('OrganizeFavorites', null)" type=button value=整理收藏夹> <INPUT οnclick="window.external.ShowBrowserUI('语言Dialog', null)" type=button value=语言设置> <INPUT οnclick="window.external.AddFavorite('/Opossum/', '研究,研讨')" type=button value=加入收藏夹> <INPUT οnclick="window.external.addChannel('/Opossum/')" type=button value=加入到频道>

设为首页

当需要将某一个网站设为首页时时,可以使用如下函数:

function SetHome(obj,url){try{obj.style.behavior='url(#default#homepage)';obj.setHomePage(url);}catch(e){if(scape){try{netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");}catch(e){$.messager.alert('警告',"抱歉,此操作被浏览器拒绝!\n\n请在浏览器地址栏输入“about:config”并回车然后将[signed.applets.codebase_principal_support]设置为'true'",'warning');}}else{$.messager.alert('警告',"抱歉,您所使用的浏览器无法完成此操作。\n\n您需要手动将【"+url+"】设置为首页。",'warning');}}}

其他的一些有关页面的常用操作

1.history

<INPUT οnclick=history.go(1) type=button value=前进>

<INPUT οnclick=history.go(-1) type=button value=后退>

<INPUT οnclick=history.forward() type=button value=前进>

<INPUT οnclick=history.behind() type=button value=后退>

document.execCommand...

<INPUT οnclick="document.execCommand('Cut')" type=button value=剪切>

<INPUT οnclick="document.execCommand('Copy')" type=button value=拷贝>

<INPUT οnclick="document.execCommand('Paste')" type=button value=粘贴>

<INPUT οnclick="document.execCommand('Undo')" type=button value=撤消>

<INPUT οnclick="document.execCommand('Delete')" type=button value=删除>

<INPUT οnclick="document.execCommand('Bold')" type=button value=黑体>

<INPUT οnclick="document.execCommand('Italic')" type=button value=斜体>

<INPUT οnclick="document.execCommand('Underline')" type=button value=下划线>

<INPUT οnclick="document.execCommand('stop')" type=button value=停止>

<INPUT οnclick="document.execCommand('SaveAs?')" type=button value=保存>

<INPUT οnclick="document.execCommand('Saveas',false,'c:

test.htm')" type=button value=另存为>

<INPUT οnclick="document.execCommand('FontName?',false,fn)" type=button value=字体>

<INPUT οnclick="document.execCommand('FontSize?',false,fs)" type=button value=字体大小>

<INPUT οnclick="document.execCommand('refresh',false,0)" type=button value=刷新>

window.location...

<INPUT οnclick=window.location.reload() type=button value=刷新 title=refresh>

<INPUT οnclick='window.location="view-source:" + window.location.href' type=button value=查看源文档 title=Button7>

WebBrowser?.ExecWB

<OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser?width=0></OBJECT>

<input title=Button onClick=document.all.WebBrowser?.ExecWB(2,1) type=button value=关闭所有>

<input title=Button onClick=document.all.WebBrowser?.ExecWB(4,1) type=button value=另存为>

<input title=Button onClick=document.all.WebBrowser?.ExecWB(6,1) type=button value=打印>

<input title=Button onClick=document.all.WebBrowser?.ExecWB(6,6) type=button value=直接打印>

<input title=Button onClick=document.all.WebBrowser?.ExecWB(7,1) type=button value=打印预览>

<input title=Button onClick=document.all.WebBrowser?.ExecWB(8,1) type=button value=PAGE设置>

<input title=Button onClick=document.all.WebBrowser?.ExecWB(10,1) type=button value=属性><br />

<input title=Button onClick=document.all.WebBrowser?.ExecWB(17,1) type=button value=全选>

<input title=Button onClick=document.all.WebBrowser?.ExecWB(22,1) type=button value=刷新>

<input title=Button onClick=document.all.WebBrowser?.ExecWB(45,1) type=button value=关闭>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。