我想从我正在开发的页面中搜索地址簿。通讯录是另一个页面的内容,该页面上通讯录的 url 是http://example.com/start.php。此地址簿有自己的搜索字段,我将用于我的页面。我写了以下搜索表单:
<form action="http://example.com/start.php" method="post" target="_blank">
<div>
<input type="hidden" value="adress" name="cmd" />
<input id = "adressinput" name="search" type="text" title="Search in the adress book [ctrl-f]" accesskey="f" value="adress book" />
<input id="refresh" title="refreshnow" name="refresh" type="image" src="icons/Downloads/arrow-circle-single.png" class="iconbutton"/>
</div>
</form>
问题是,当我在表单的文本框中写一些东西,然后单击图标 refreshnow 时,会显示页面http://example.com/start.php(地址簿),但搜索字段这个页面的值仍然是空的,当然我没有得到任何结果。
这不是我的第一个搜索表单。我写过类似的表格并且它们有效,所以,我不知道为什么它不起作用。