本文目录一览:
- 1、织梦模板怎么添加搜索框
- 2、dedecms搜索功能怎么设置,详细点的教程
- 3、织梦dedecms仿站:怎么在原本没有搜索框的站上增加织梦搜索框?
- 4、在dedecms5.5如何添加站内搜索?
织梦模板怎么添加搜索框
添加搜索框代码如下:
form method="post"
action="{dede:global.cfg_basehost/}/plus/search.php" name="formsearch"
class="search"input type="hidden" value="" name="domains"input type="hidden" value="0" name="kwtype"
table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"
tr
td width="65" /td
td width="146" valign="middle"input class="keywords" name="q" type="text" id="search" value="请输入搜索内容..."
input type="hidden" value="titlekeyword" name="searchtype"
/td
td width="5" /td
td button type="submit" class="submit"/button /td
/tr
/table
/form
二、
form method="post" action="{dede:global.cfg_basehost/}/plus/search.php" name="formsearch" class="search"input type="hidden" value="" name="domains"input type="hidden" value="0" name="kwtype"
table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"
tr
td width="65"nbsp;/td
td width="146" valign="middle"
input class="keywords" name="q" type="text" id="search" value="请输入搜索内容..." onFocus="if(this.value=='请输入搜索内容...'){this.value='';}" onBlur="if(this.value==''){this.value='请输入搜索内容...';}"
input type="hidden" value="titlekeyword" name="searchtype"
/td
td width="5"nbsp;/td
td button type="submit" class="submit"/button /td
/tr
/table
/form
dedecms搜索功能怎么设置,详细点的教程
你可以直接修改织梦自带的那个default里面的search页面,另外在你的前端代码写搜索的地方加上引用: form action="/plus/search.php" method="post" class="search-form"
input name="keyword" class="input-keyword" value="搜索您感觉兴趣的…" onblur="if(this.value=='') this.value='搜索您感觉兴趣的…';" onfocus="if(this.value=='搜索您感觉兴趣的…') this.value='';" type="text"
input name="submit" class="search-btn" value="" type="submit"
/form
织梦dedecms仿站:怎么在原本没有搜索框的站上增加织梦搜索框?
首先你要有搜索的那个模板,再在默认首页模板中复制那段搜索代码,再粘贴到你想要的位置
本内容来自织梦之家官网教程!
在dedecms5.5如何添加站内搜索?
可以参照默认模板中的搜索代码将其添加到新的模板的对应位置就可以了