ページのボタンで起動するjavascript関数を使用して事前定義されたGoogle検索を実行する必要があります。
だから私は以前に成功せずに試しました:
<html>
<head>
<script language="JavaScript">
function googleSearch(quest){
var googlefind = "http://www.google.com/search?hl=en&q=" + quest + " buy Blu-Ray DVD";
window.open(googlefind);
}
</script>
</head>
<body>
<INPUT type="button" value="Buy this Anime Now!" onclick="googleSearch("Fullmetal Alchemist Brotherhood");">
</body>
</html>
誰かが私を助けてくれますか?