我正在制作一个使用 JavaScript 进行数据库搜索的 PHP 网页(搜索建议)。我曾经div
显示搜索建议项目。当用户单击此项目时,会打开该项目的详细信息页面。它似乎在 Firefox 中运行良好 bt 它在 IE 上不起作用。
HTML部分:
<form method="post" name="searchform" id="searchform">
<table class="nostyle" width="80%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="30%">Customer
<input type="text" name="search_customer" id="customer_name" class="input-text" onKeyUp="searchsuggest();" autocomplete="off"/>
<br /><div id="search_suggest" onclick="document.getElementById('searchform').submit();"> </div></td>
</tr>
</table>
</form>
请帮助我,我是新手!