Set as homepage

< a onclick="">Add to favorites"; then copy the JS code to anywhere."/> Set as homepage

< a onclick="">Add to favorites"; then copy the JS code to anywhere.">

Home  >  Article  >  CMS Tutorial  >  How does Imperial CMS implement adding to favorites and setting as homepage?

How does Imperial CMS implement adding to favorites and setting as homepage?

藏色散人
藏色散人Original
2019-12-09 09:10:292362browse

How does Imperial CMS implement adding to favorites and setting as homepage?

How does Empire CMS implement adding to favorites and setting it as the homepage?

The example in this article describes how Empire CMS implements adding to favorites and set as home page. 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:

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>

The above is the detailed content of How does Imperial CMS implement 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