我尝试使用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');">
答案 0 :(得分:-1)
<input type="button" onClick="sethomepage()" />
JS
function sethomepage(){
location.href = "http://microsoft.com";
}