搜索指定栏目内容
// 获取后台模板参数选择了需要搜索的栏目信息
//$u['...']['...'] 模板开发助手添加的参数,详情查看《常用标签》
<php>$menu = UI::menu($u['...']['...'] );</php>
// 组合搜索表单
<form action="{{$menu['url']}}" method="GET">
<input type="text" name="keyword" />
<input type="submit" value="立即搜索" />
</form>
搜索指定模块内容
// 如果不需要后台指定搜索栏目,可以直接搜索整个模块
// 比如搜索整个文章模块内容
<form action="/search/news-1.html" method="GET">
<input type="text" name="keyword" />
<input type="submit" value="立即搜索" />
</form>
// 只需要把 keyword 参数提交到 /search/news-1.html 这个链接上即可!
// news可以换为product、image、download
搜索全站内容
<form action="/search/all-1.html" method="GET">
<input type="text" name="keyword" />
<input type="submit" value="立即搜索" />
</form>
// 只需要把 keyword 参数提交到 /search/all-1.html 这个链接上即可!