dedeCMS织梦系统搜索功能实现

2014-06-23

dedeCMS的搜索功能实现比较简单,系统自带有现成的搜索功能。用的时候稍微注意一下,代码类似于下面这样:

<form name=”formsearch” action=”{dede:global.cfg_cmsurl/}/plus/search.php”>
<input name=”q” type=”text” value=”搜索内容” onfocus=”if(value==’搜索内容’) {value=”; this.style.color=’black’} ” onblur=”if(value==”) {value=’搜索内容’; this.style.color=’#8a8a8a’}”>
<input type=”submit” value=””>
</form>

搜索内容输入框内一定要加上 name=”q”,否则输入任何内容,在搜索的时候都会提示“关键字不能小于2个字节!”。

发表评论

邮箱地址不会被公开。 必填项已用*标注