zdcms搜索框自定义样式写法
在需要自定义搜索框的地方引入以下代码进行修改;
<form class="search-form" action="/index.php" method="get"> <input type="hidden" name="s" value="news"> <input type="hidden" name="c" value="search"> <input type="text" placeholder="搜索内容..." name="keyword"> <input type="submit" value="提交搜索" /> </form>
注意:s的news参数是指定模块目录
单击搜索按钮就进入搜索界面,逻辑很简单,表单美化自己通过css去处理。