2014年2月12日 星期三

[Javascript]在搜尋輸入框輸入字串,按ENTER即送出查詢


龍偷內兜搜尋引擎

在搜尋輸入框輸入字串,按ENTER即送出查詢。


<INPUT type="text" name="strQuery" id="strQuery" style="font-size:

9pt;HEIGHT:17PX;width:110px; background-color: #ffffff; border: 1 solid #FF9900" value="請

輸入關鍵字" accesskey="S" onFocus="javascript:if(value=='請輸入關鍵字'){value='';}"

onKeyPress="javascript:if(event.keyCode == 13){search(this,event)}">

<a href="javascript:search()"><img src="images/index_top05.gif" alt="搜尋按鈕" height="17"

border="0"></a>


在搜尋結果頁面按回上一頁設定Focus


<body onLoad="setFocus()">




<script LANGUAGE="JavaScript">
function search()
{
document.search_form.p.value = document.search_form.strQuery.value;
  document.search_form.submit();
}
function setFocus()
{
   if(document.search_form.strQuery.value != "請輸入關鍵字")
 document.search_form.strQuery.focus();
}
</script>

=======================
完畢。

沒有留言:

張貼留言