|
把这段代码放在您的网站或者博客上,就立即拥有自己的吉他谱搜索引擎
<form id="form1" name="form1" method="post" action="http://www.jitashu.com/jitapusoso/search_engine/search.php" target="_blank">
<label>
<input name="keyword" type="text" id="keyword" />
</label>
<label>
<input name="RadioGroup1" type="radio" value="1" checked="checked" />
模糊
</label>
<label>
<input type="radio" name="RadioGroup1" value="2" />
歌名</label>
<label>
<input type="radio" name="RadioGroup1" value="3" />
歌手</label>
<label>
<input type="submit" name="Submit" value="吉他谱搜搜" />
</label>
</form>
<script language="javascript">
function CheckForm()
{
if(document.form1.keyword.value=="")
{
alert("关键词不得为空");
document.form1.keyword.focus();
return false;
}
}
</script>
|
|