html 通用搜索标记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 通用搜索标记相关的知识,希望对你有一定的参考价值。
<!-- Search Form -->
<form id="searchform" class="searchform" name="searchform">
<input type="text" class="search_input" />
<button type="submit" class="search-button">
<span class="icon icon-search"></span>
</button>
</form>
<!-- Search Result Modal -->
<div id="modal-search">
<div class="modal">
<header class="modal-header clearfix">
<form id="modal-searchform" class="searchform" name="modal_searchform">
<input type="text" class="search_input" />
<button type="submit" class="search-button">
<span class="icon icon-search"></span>
</button>
</form>
<a class="close">
<span class="icon icon-close"></span>
</a>
</header>
<main class="modal-body">
<ul class="results ajax-content" id="modal-search-results">
<!-- The result list will fill in here -->
</ul>
</main>
<footer class="modal-footer ajax-content clearfix">
<div class="meta">
<strong class="range"></strong> of <strong class="total"></strong>
</div>
<div class="error"></div>
<a class="nav next">
<span class="text">NEXT</span>
<span class="icon icon-chevron-right"></span>
</a>
<a class="nav prev">
<span class="icon icon-chevron-left"></span>
<span class="text">PREV</span>
</a>
</footer>
</div>
<div class="overlay"></div>
</div>
以上是关于html 通用搜索标记的主要内容,如果未能解决你的问题,请参考以下文章
HTML5新特性总结0804
如何在html添加一个搜索框和一个按钮?点击按钮,就搜索到框里的内容
HTML5基础
如何在vscode中调用浏览器运行html?
html空格符号怎么打
如何仅搜索 HTML 列表中的特定跨度标记而不搜索所有列表项? (jQuery)