在Flash 设为首页 加为收藏实现代码
作者:
一直都是用js实现设为首页和加为收藏页面实现 在Flash中实现“设为首页”和“加为收藏”功能是使用Get URL结合JavaScript来实现的。
设为首页代码:
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 (release) {
getURL("javascript:window.external.AddFavorite('http://www.zishu.cn/','子鼠')");
}
在<body>和</body>之间,加入以下代码:
<A HREF=Javascript:></A>
复制代码 代码如下:
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 (release) {
getURL("javascript:window.external.AddFavorite('http://www.zishu.cn/','子鼠')");
}
在<body>和</body>之间,加入以下代码:
<A HREF=Javascript:></A>
您可能感兴趣的文章:
- 设为首页与加入收藏的JS代码(多浏览器支持)
- javascript 设为首页与加入收藏兼容多浏览器代码
- javascript 加入收藏、设为首页(IE,firefox兼容脚本之家版)
- JS 强制设为首页的代码
- javascript在firefox下设为首页的代码
- 在Flash中添加“设为首页”、“加为收藏”的方法
- Flash 中"设为首页"代码
- 设为首页 加入收藏的js代码
- 强制设为首页代码
- js Firefox 加入收藏夹功能代码 兼容Firefox 和 IE
- 一个可以兼容IE FF的加为首页与加入收藏实现代码
- javascript addBookmark 加入收藏 多浏览器兼容
- 通用的加入收藏夹代码支持IE Firefox等浏览器
- 设为首页加入收藏兼容360/火狐/谷歌/IE等主流浏览器的代码