帝国cms结合项url 帝国CMS新手教程加入收藏,设为首页js代码

帝国CMS教程

加入收藏,设为首页代码,兼容IE,火狐,谷歌等所有浏览器

复制以下代码到需要显示的地方:

<aonclick="SetHome(window.location)"href="javascript:void(0)">设为首页</a><aonclick="AddFavorite(window.location,document.title)"href="javascript:void(0)">加入收藏</a>

复制以下JS代码到页面任意地方:

<scripttype="text/javascript"language="javascript">functionAddFavorite(sURL,sTitle){sURL=encodeURI(sURL);try{window.external.addFavorite(sURL,sTitle);}catch(e){try{window.sidebar.addPanel(sTitle,sURL,"");}catch(e){alert("加入收藏失败,请使用Ctrl+D进行添加,或手动在浏览器里进行设置.");}}}//设为首页functionSetHome(url){if(document.all){document.body.style.behavior='url(#default#homepage)';document.body.setHomePage(url);}else{alert("您好,您的浏览器不支持自动设置页面为首页功能,请您手动在浏览器里设置该页面为首页!");}}</script>