MDIBrowser Part22

このエントリーをはてなブックマークに追加
582名無しさん@お腹いっぱい。
//ページ内検索バーの語句をGoogle検索

var Obj = new ActiveXObject("MDIBrowser.API");
var Keyword = Obj.SearchBarString()

if (Keyword){
var urI= 'http://www.google.co.jp/search?num=100&hl=ja&lr=lang_ja&q=' + Keyword;
Obj.NavigateNew(encodeURI(urI));
}
else{
Obj.ShowMessage("検索語がありません。");
}

Obj = null;