Rumah  >  Artikel  >  Tutorial CMS  >  帝国CMS如何实现加入收藏与设为首页

帝国CMS如何实现加入收藏与设为首页

藏色散人
藏色散人asal
2019-12-09 09:10:292389semak imbas

帝国CMS如何实现加入收藏与设为首页

帝国CMS如何实现加入收藏与设为首页?

本文实例讲述了帝国CMS实现加入收藏与设为首页的方法。分享给大家供大家参考。具体实现方法如下:

加入收藏,设为首页代码,兼容IE,火狐,谷歌等所有浏览器,复制以下代码到需要显示的地方:

代码如下:

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

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

代码如下:

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

Atas ialah kandungan terperinci 帝国CMS如何实现加入收藏与设为首页. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn