その中で Web サイトを開発しています。Google 検索バー、使用したコードを使用しています。
<form id="form_body" method="get" action="http://www.google.com /search">
<p>Google Search<input type="text" name="q"/>
<input type="submit" value="Search"/></p>
</form>
今問題は、検索のために入力したキーワードを保存したいのですが、このコードを使用してみました
<form id="form_body" method="get" action="http://www.google.com/search">
<p>Google Search<input type="text" name="q"/>
<input type="button" onclick="save1()" value="Search"/></p>
</form>
動作しない JavaScript 関数はどこにsave1
ありますか (まったく動作しません)