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


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

收藏本站

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

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('http://blog.csdn.net/Opossum/', '研究,研讨')" type=button value=加入收藏夹>   
<INPUT οnclick="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 ο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=后退> 

  1. 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=刷新> 

  1. 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> 

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值