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

来源:互联网 发布:用手机拍摄淘宝图片 编辑:程序博客网 时间:2024/05/16 06:31


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

收藏本站

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

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

设为首页

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

function SetHome(obj,url){try{obj.style.behavior='url(#default#homepage)';obj.setHomePage(url);}catch(e){if(window.netscape){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 onclick=history.go(1) type=button value=前进>
<INPUT onclick=history.go(-1) type=button value=后退>
<INPUT onclick=history.forward() type=button value=前进> 
<INPUT onclick=history.behind() type=button value=后退> 

  1. document.execCommand...

<INPUT onclick="document.execCommand('Cut')" type=button value=剪切> 
<INPUT onclick="document.execCommand('Copy')" type=button value=拷贝> 
<INPUT onclick="document.execCommand('Paste')" type=button value=粘贴> 
<INPUT onclick="document.execCommand('Undo')" type=button value=撤消> 
<INPUT onclick="document.execCommand('Delete')" type=button value=删除> 
<INPUT onclick="document.execCommand('Bold')" type=button value=黑体> 
<INPUT onclick="document.execCommand('Italic')" type=button value=斜体> 
<INPUT onclick="document.execCommand('Underline')" type=button value=下划线> 
<INPUT onclick="document.execCommand('stop')" type=button value=停止> 
<INPUT onclick="document.execCommand('SaveAs?')" type=button value=保存> 
<INPUT onclick="document.execCommand('Saveas',false,'c:
test.htm')" type=button value=另存为> 
<INPUT onclick="document.execCommand('FontName?',false,fn)" type=button value=字体> 
<INPUT onclick="document.execCommand('FontSize?',false,fs)" type=button value=字体大小> 
<INPUT onclick="document.execCommand('refresh',false,0)" type=button value=刷新> 

  1. window.location...

<INPUT onclick=window.location.reload() type=button value=刷新 title=refresh>
<INPUT onclick='window.location="view-source:" + window.location.href' type=button value=查看源文档 title=Button7> 

  1. 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=关闭> 

原创粉丝点击