Home  >  Article  >  CMS Tutorial  >  Imperial CMS implements methods of adding to favorites and setting as homepage

Imperial CMS implements methods of adding to favorites and setting as homepage

silencement
silencementOriginal
2019-11-26 15:19:292431browse

Imperial CMS implements methods of adding to favorites and setting as homepage

The example in this article describes the method of adding to favorites and setting as homepage in Imperial CMS. Share it with everyone for your reference. The specific implementation method is as follows:

Add to favorites, set as homepage code, compatible with IE, Firefox, Google and other browsers, copy the following code to the place where it needs to be displayed:

The code is as follows :

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

Copy the following JS code to anywhere on the page:

Recommended to study "Empirecms Tutorial"

The code is as follows:

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

I hope this article will be helpful to everyone’s Imperial CMS website building.

The above is the detailed content of Imperial CMS implements methods of adding to favorites and setting as homepage. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn