form.asp

来自「烈火之家整站程序 本程序集商业娱乐一体,本来是给自己用的但是我的国外空间支持不够」· ASP 代码 · 共 33 行

ASP
33
字号
<script Language="JavaScript">
function Search_Validator(theForm) 
{ 
	if (theForm.Search_Keywords.value == "" || theForm.Search_Keywords.value == "请输入搜索关键字") 
	{ 
		alert("请填写要搜索的关键字"); 
		theForm.Search_Keywords.focus(); 
		theForm.Search_Keywords.value=""
		return (false); 
	} 
	return (true); 
} 
</script>
<div align=center>
  <table width=565 height=36 border=0 align=center cellpadding=0 cellspacing=0>
    <tr> 
      <form name="Search" method="post" action="search1.asp" onsubmit="return Search_Validator(this)">
        <td width="565" height="36" align=center  class=title> 
          <input type="text" name="Search_Keywords" size="35" ondblClick="this.value=''" maxlength="100" value="请输入搜索关键字" class=ibox> 
          <input type="radio" name="Search_Type" value="music" checked>
          音乐  
          <input type="radio" name="Search_Type" value="flash" >
          FLASH 
          <input type="radio" name="Search_Type" value="video" >
          视频 
          <INPUT  
type=image src="images/search.gif" alt=搜 align=absMiddle width="52" height="22" border=0 > </td>
      </form>
    </tr>
  </table>
 </div>
     

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?