jquery || js把网站添加到收藏夹

           //搜藏本站
            $("#storeWeb").click(function() {

                var ctrl = (navigator.userAgent.toLowerCase()).indexOf('mac') != -1 ? 'Command/Cmd' : 'Ctrl';
                if (document.all) {
                    window.external.addFavorite(window.location, document.title);
                }
                else if (window.sidebar) {
                    window.sidebar.addPanel(document.title, window.location);
                }
                else {
                    alert('添加失败,请用Ctrl+D进行添加');
                }

            });

posted @ 2011-06-22 15:56  狼-志  阅读(2822)  评论(0)    收藏  举报