21 lines
721 B
HTML
21 lines
721 B
HTML
|
<!-- $Id: goods_search.htm 16790 2009-11-10 08:56:15Z wangleisvn $ -->
|
||
|
<div class="form-div">
|
||
|
<form action="javascript:searchPortal()" name="searchForm">
|
||
|
<img src="images/icon_search.gif" width="26" height="22" border="0" alt="SEARCH" />
|
||
|
<!-- 关键字 -->
|
||
|
{$lang.keyword} <input type="text" name="keyword" size="15" />
|
||
|
<input type="submit" value="{$lang.button_search}" class="button" />
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
{literal}
|
||
|
<script language="JavaScript">
|
||
|
function searchPortal()
|
||
|
{
|
||
|
listTable.filter['keyword'] = Utils.trim(document.forms['searchForm'].elements['keyword'].value);
|
||
|
listTable.filter['page'] = 1;
|
||
|
|
||
|
listTable.loadList();
|
||
|
}
|
||
|
</script>
|
||
|
{/literal}
|