Created
September 28, 2013 11:46
-
-
Save xyqfer/6741286 to your computer and use it in GitHub Desktop.
加入收藏夹
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function AddFavorite(sURL, sTitle) { | |
try { | |
window.external.addFavorite(sURL, sTitle) | |
} catch(e) { | |
try { | |
window.sidebar.addPanel(sTitle, sURL, "") | |
} catch(e) { | |
alert("加入收藏失败,请使用Ctrl+D进行添加") | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment