加入收藏代碼如下 想改成收藏當前的title 和 url ,需要怎麼改
<a href="當前url裡顯示的地址" onclick="window.external.addFavorite(this.href,this.title);return false;" title='當前的title' rel="sidebar">加入收藏</a>
this是a對象,點擊按鈕獲取到的a的連接和title。如果是當前頁面的要用location.href和document.title
<a href="當前url裡顯示的地址" onclick="window.external.addFavorite(location.href,document.title);return false;" title='當前的title' rel="sidebar">加入收藏</a>