求添加收藏夹代码

求添加收藏夹代码,第1张

这个是兼容浏览器代码,把http://www.xxx.com换成你的网站就行了,把网站名称换成你的!

<script type="text/javascript">

function addFav() { // 加入收藏夹

if (document.all) {

window.external.addFavorite('http://www.xxx.com','网站名称')

}

else if (window.sidebar) {

window.sidebar.addPanel('网站名称', 'http://www.xxx.com', "")

}

}

function SetHome(obj) {

try {

obj.style.behavior = 'url(#default#homepage)'

obj.setHomePage('网站地址')

} catch (e) {

if (window.netscape) {

try {

netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect")

} catch (e) {

alert(" 抱歉,此 *** 作被浏览器拒绝!\n\n请在浏览器地址栏输入“about:config”并回车然后将 [signed.applets.codebase_principal_support]设置为'true'")

}

} else {

alert(" 抱歉,您所使用的浏览器无法完成此 *** 作。\n\n您需要手动将'http://www.xxx.com'设置为首页。")

}

}

}

</script>

把以下代码放在<head></head>间。

<script type="text/javascript">

function addBookmark(title,url) {

if (window.sidebar) {

window.sidebar.addPanel(title, url,"")

} else if( document.all ) {

window.external.AddFavorite( url, title)

} else if( window.opera &&window.print ) {

return true

}

}

</script>

以下代码放在:<body></body>间

<a href=javascript:addBookmark('收藏我吧,'http://这里写你的网址/')> 收藏我吧</a>把.


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11409315.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存