php 设为首页 收藏_设为首页,加入收藏js代码(兼容ie火狐chrome主流浏览器)

博客内容涉及WordPress中因安全原因禁用的strncmp函数,该函数在包括/wp-includes/formatting.php在内的文件中出现警告。文章讨论了如何在不同浏览器环境中(如IE和Firefox)实现收藏和设置首页的功能,并提供了针对浏览器限制的解决建议。
摘要由CSDN通过智能技术生成

Warning: strncmp() has been disabled for security reasons in /www/web/default/blog/public_html/wp-includes/formatting.php on line 117

Warning: strncmp() has been disabled for security reasons in /www/web/default/blog/public_html/wp-includes/formatting.php on line 117

使用时直接调用函数,不需设定网站标题等

收藏本站

设为首页

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

if (document.all) {

window.external.addFavorite(window.location.href, document.title);

} else if (window.sidebar) {

window.sidebar.addPanel(document.title, window.location.href, "");

}

}

function setHomepage(){ // 设置首页

if (document.all) {

document.body.style.behavior = 'url(#default#homepage)';

document.body.setHomePage(window.location.href);

} else if (window.sidebar) {

if(window.netscape) {

try {

netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');

}

catch (e) {

alert('此操作被浏览器拒绝!\n请在浏览器地址栏输入“about:config”并回车\n然后将 [signed.applets.codebase_principal_support]的值设置为’true’,双击即可。');

}

var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch);

prefs.setCharPref('browser.startup.homepage', window.location.href);

}

}

}

if (window.sidebar)是判断FF的一种方法,就像判断IE用if (document.all)一样

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值