表单元素作为搜索栏 发表于 2022-03-17 更新于 2022-10-21 分类于 HTML 基于表单元素的特点,可以用其作为搜索栏,而不使用 JavaScript。 在 <form> 中,如果有 <button type="submit">提交</ button>,点击可以提交到 <form> 指定的路径。利用这个特点,可以将其做成搜索组件。 以 /search 为搜索页为例: 123456<form action="/post"> <input name="type" value="name" type="hidden" /> <!--默认带有参数 type=name--> <input name="content"> <button type="submit">搜索</button></form> 输入 steven,点击“搜索”后,页面跳转到 /search?type=name&content=steven form <button> 本文作者: stevending1st 本文链接: https://stevending1st.github.io/blog/20220317-form-as-a-search-bar/ 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!