JAVA实现加入收藏和设为首页---网摘

JS:
加入收藏夹
<script language="javascript">
function bookmark(){
window.external.AddFavorite('http://www.baidu.com', '无忧脚本')
}
</script>
<body onUnload="bookmark()">

设为首页
<script language="javascript">
function bookmark(){
this.style.behavior="url(#default#homepage)";
this.sethomepage("http://www.baidu.com");
return false;
}
HTML:
</script>
<body onUnload="bookmark()">
原文地址:https://www.cnblogs.com/Stir-friedEggplant/p/8416124.html