之前进行仿站的时候搜索功能很少仿,今天仿个网站里面有个搜索页面,为了网站多完整度,所以也进行了精心的仿制。
首先我们要了解织梦程序实现搜索功能所涉及的页面,先了解搜索能够多内部文件
在根目录下有一个文件夹为plus,里面有一个search.php文件,这个文件就是实现CMS搜索的内部文件。然后在你的表单代码中加入(也就是网站前台搜索框的地方),有时候在仿站的时候需要保留搜索框多样式我们需要把id留下来
<form id="search" name="search" method="post" action="/plus/search.php">
<input type="text" name="keyword" />
<input type="submit" value="" />
</form>
我在仿站的时候上经过修改后保留了原网站的样式的代码
<form id="searchform" name="search" method="post" action="/plus/search.php">
<input type="text" onfocus="if(this.value=='请输入关键字进行搜索'){this.value='';}" onblur="if(this.value==''){this.value='请输入关键字进行搜索';}" value="请输入关键字进行搜索" name="keyword" />
<button type="submit" name="button" id="button">搜索</button>
</form>
然后就是前台页面,我们需要新建一个search.htm模板,你提交之后,PHP脚本会自动调用搜索模板显示页面,把
search.htm页面的内容仿制和调用好。就可以在网站上使用了。