求 设为首页 和 收藏本页 不弹出activex选项的代码。
发布网友
发布时间:2022-05-21 18:12
我来回答
共2个回答
热心网友
时间:2023-11-05 07:46
网上帮你找的,如果还不行,你就自个再找找,网上很多的。
//加入收藏夹
function Addme() {
url = document.URL; //你自己的主页地址
title = "****"; //你自己的主页名称
window.external.AddFavorite(url, title);
}
//设为首页
function SetHome(obj,vrl){
try{
obj.style.behavior='url(#default#homepage)';obj.setHomePage(vrl);
}
catch(e){
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',vrl);
}
}
}
//复制
function copyToClipBoard(){
var clipBoardContent=''
clipBoardContent=document.getElementByIdx_x("Top1_di1").value
window.clipboardData.setData("Text",clipBoardContent)
alert('地址已复制到剪切板,赶快推荐您的好友吧!')
}
eg:
;<a onclick="Addme()" style="cursor:hand;">收藏本站</a><a onclick="SetHome(this,window.location)" style="cursor:hand;">设为首页</a></div>
其他
文字
设为首页:
<a href=# onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com');">设为首页</a>
加入收藏
<span style="CURSOR: hand" onClick="window.external.addFavorite('http://www.baidu.com','百度')" >加入收藏</span>
图片
设为首页
<a href=# onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com');"><img border="0" src="Images/About_2.gif" width="84" height="19" /></a>
加入收藏
<a href=#><img border="0" src="images/A_2.jpg" width="150" height="39" id="shoucang" onClick="window.external.addFavorite('http://www.baidu.com','百度')" /></a>
热心网友
时间:2023-11-05 07:47
你是html直接测试吧?这种情况下会的,你放到服务器或者自己电脑建个服务器运行就不会的
另一位回答者的代码,是针对的不同浏览器做的兼容