我正在其中开发一个网站我正在使用谷歌搜索栏,我使用的代码
<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
不起作用(根本不起作用)