下面紅色代碼是實(shí)現(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="請(qǐng)輸入關(guān)鍵字">
<input type="submit" value="搜索">
</form>
<script>
function searchForm()
{
var keywords = document.getElementById('keywords').value;
if (keywords == '') {
alert('請(qǐng)輸入關(guān)鍵字');
return false;
}
return true;
}
</script>
{/eyou:searchform}