js如何实现浏览器收藏功能,就是模拟ctrl+D来实现网页对收藏,external.addFavorite兼容不行,求教?
1 回答
![?](http://img1.sycdn.imooc.com/5333a0350001692e02200220-100-100.jpg)
开满天机
TA贡献1786条经验 获得超13个赞
做判断,再结合 sidebar.addPanel
一起使用。比如:
if (window.sidebar) { window.sidebar.addPanel(location.href, document.title, ""); } else if (window.external) { window.external.AddFavorite(location.href, document.title); }
添加回答
举报
0/150
提交
取消