设置主页Js在IE11中不工作

Set HomePage Js is not working in IE11

本文关键字:工作 IE11 主页 Js 设置      更新时间:2023-09-26

我尝试使用JavaScript设置链接作为主页,但它不工作在Internet explorer 11

<input type="button" value="Make This Site Your Home Page" onClick="this.style.behavior='url(#default#homepage)'; this.setHomePage('http://microsoft.com');">
<input type="button" onClick="sethomepage()" />

js

function sethomepage(){
  location.href = "http://microsoft.com";
}