html 自定义搜索

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 自定义搜索相关的知识,希望对你有一定的参考价值。

<div class="custom-search-panel">
	<input type="text" id="custom-search-field" placeholder="What are you looking for?" />
	<select id="custom-search-category">
		<option value="">Category</option>
		<option value="Events">Events</option>
		<option value="News">News</option>
		<option value="Staff">Staff</option>
	</select>
	<button type="button" id="custom-search-button">Search</button>
</div>

<script>
$(function () {
  $('#custom-search-button').click(function () {
    console.log(
      '/SearchResults.aspx?s=' + $('#custom-search-field').val() + '&refinement=' + $('#custom-search-category').val()
    )
  })
});
</script>

以上是关于html 自定义搜索的主要内容,如果未能解决你的问题,请参考以下文章

html 自定义搜索

html 自定义goog搜索

html 自定义goog搜索

html 即时Google自定义搜索引擎

html 自定义搜索表单

如何使用自定义搜索来获取 html 文件中的数据?