赤字:JavaScriptの命令や重要なタグ/青字:用途に応じて変更する部分/緑字:変更可能な変数名やユーザー関数名
こちらはInternet Explorer専用の機能です。
<form><input type="button" value="お気に入りに追加" onClick="AddPageLink()"></form> <script type="text/javascript"> function AddPageLink() { window.external.AddFavorite("http://www.shurey.com/","Labyrinthe Noir"); } </script>
WindowsのInternet Explorerでないと動作しません。
URLと登録される名称を記述するだけです。リンクにも使用できます。
通常のリンクを使っても可能です。以下に1つにまとめています。
<a href="javascript:window.external.AddFavorite('http://www.shurey.com/','Labyrinthe Noir')">お気に入りに追加</a>
ボタンの場合、onClickの中に直接スクリプトを記述することも出来ます。
<input type="button" onClick="window.external.AddFavorite('http://www.shurey.com/','Labyrinthe Noir')">