我想使用IE的着名腳本製作默認的主頁腳本,但我試圖將它添加到jquery函數中。爲IE9設置默認主頁javascript
所以此工程:
<a href="#" onClick="document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage('http://www.google.com');">
Click here to make My Site your default homepage
</a>
但這並不:
<a href="#" onClick="">
Click here to make My Site your default homepage
</a>
$('a').click(function() {
document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage('http://www.google.com');
});
什麼,我哪裏做錯了?
編輯:請注意點擊功能不適用於IE9。 IE6,7和8它的工作原理。
並沒有區別。試過了。謝謝 – jQuerybeast