お気に入りに追加(IE専用)

赤字: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')">

戻る