幫助

易優(yōu)CMS搜索必填代碼

2019-10-16 16:12 易優(yōu)技巧
下面紅色代碼是實現(xiàn)搜索必填功能的代碼,只需在原有的搜索代碼內(nèi)加入就行。
{eyou:searchform type='default'}
  <form method="get" action="{$field.action}" onsubmit="return searchForm();">
{$field.hidden}
 <input type="text" name="keywords" id="keywords" placeholder="請輸入關(guān)鍵字">
<input type="submit" value="搜索">
  </form>
<script>
function searchForm()
{
var keywords = document.getElementById('keywords').value;
if (keywords == '') {
alert('請輸入關(guān)鍵字');
return false;
}
return true;
}
</script>
{/eyou:searchform} 


標簽: 搜索
QQ在線咨詢