Home Web Front-end Front-end Q&A How to create html search box

How to create html search box

May 29, 2023 pm 03:18 PM

How to create HTML search box? Teach you how to quickly implement

Modern websites are inseparable from the search function, which has become one of the basic elements of the website. When users need to find some specific information, especially when the website content is huge, the search function is particularly important. In HTML, implementing a search box does not require too much code and skills. It only needs to follow certain specifications and can be easily implemented.

This article will introduce in detail the implementation method of HTML search box, as well as some practical skills, so that you can quickly add search functions to your website.

  1. Create the basic structure of an HTML search box

To create a search box, first we need to use HTML to define the basic structure of the search box. In the search box, we generally use the element, which has many types. We use the type="text" type here to define a text input box, as shown below:

<form>
  <input type="text" placeholder="请在这里输入">
</form>
Copy after login

In this HTML code snippet, we created a

element and defined a The text input box also uses the placeholder attribute to provide prompt information for the input box. Note: The placeholder attribute is a new attribute in HTML5. This attribute can be used to enter prompt information in the text box. It will disappear after the user enters content into the text box.

  1. Add a submit button

When creating the search function, we also need a submit button. After the user enters text, he or she needs to use the mouse or keyboard to enter and submit the search request. For the submit button, we also use the element with type "submit", as shown below:

<form>
  <input type="text" placeholder="请在这里输入">
  <input type="submit" value="搜索">
</form>
Copy after login

In this HTML code, we added an

  1. Implementing the search function

We have defined the basic structure and style of the search box above, and then we need to implement the search function. The simplest method is to use the action attribute of HTML to pass the search form request to the server for processing. For example, the following code will submit the search form request to the "search.php" page for processing.

<form action="search.php">
  <input type="text" placeholder="请在这里输入">
  <input type="submit" value="搜索">
</form>
Copy after login

However, if you don’t have a server yet or haven’t written server-side code, you can use JavaScript in HTML to implement the search function. We use JavaScript to listen to the click event of the submit button and obtain the text information in the input box. The specific operation is as follows:

<form>
  <input id="searchBox" type="text" placeholder="请在这里输入">
  <input type="submit" value="搜索" onclick="search()">
</form>

<script>
function search() {
  var keyword = document.getElementById("searchBox").value;
  alert("正在搜索:" + keyword);
  // 实现搜索功能
}
</script>
Copy after login

In this example, we first add an id attribute to the element so that the reference to the element can be easily obtained in JavaScript code. We then define a JavaScript function called "search" that is called by the submit button's onclick event. In the "search" function, we obtain the reference to the input box through document.getElementById, obtain the search keyword entered in the input box, and finally use the alert function to display the keyword being searched. Behind the alert function, we can write our own search code.

  1. Implement the automatic prompt function

The automatic prompt function in the search box allows users to automatically pop up relevant search suggestions when entering keywords. This feature is very useful as it helps users find the information they want faster. To implement the automatic prompt function of the search box in HTML, you can use JavaScript to implement it. For example, we can bind the onkeyup event of the input box, and relevant search suggestions will automatically pop up for the user every time characters are entered in the input box.

<form>
  <input id="searchBox" type="text" placeholder="请在这里输入" onkeyup="showHint()">
  <input type="submit" value="搜索">
</form>

<script>
function showHint() {
  var keyword = document.getElementById("searchBox").value;
  var xmlhttp;
  if (keyword.length==0) { 
    document.getElementById("hintBox").innerHTML="";
    return;
  }
  if (window.XMLHttpRequest) {
    xmlhttp=new XMLHttpRequest();
  } else { 
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
  xmlhttp.onreadystatechange=function() {
    if (this.readyState==4 && this.status==200) {
      document.getElementById("hintBox").innerHTML=this.responseText;
    }
  }
  xmlhttp.open("GET","gethint.php?q="+keyword,true);
  xmlhttp.send();
}
</script>
Copy after login

In the above code, we define a function named "showHint", which uses the XMLHttpRequest object to send a get request to the background to obtain keyword-related search suggestions. When the search suggestions are obtained, we display them in the defined HTML element with the id "hintBox".

  1. Add styles

Finally, we can beautify the appearance of the search box through CSS styles. For example, the style of the search box can be unified by setting the background color, outer border, inner margin, etc. The code is as follows:

input[type="text"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
}
input[type="text"]:focus {
  border-color: #369;
  box-shadow: 0 0 5px #369;
}
input[type="submit"] {
  background-color: #369;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-left: -5px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
}
input[type="submit"]:hover {
  background-color: #258;
}
Copy after login

In the above code, we set the inner margin of the input box, Outer borders, rounded corners and other styles make it look more beautiful. At the same time, we also defined a :focus pseudo-class. When the input box gains focus, the border style will be changed to establish a relationship with the box rendering. In the submit button style, we set the style change when the mouse is hovered.

Summary

Through the introduction of this article, we have learned how to use HTML and JavaScript to create a search box, and mastered some common techniques, such as automatic prompt functions and beautification styles, etc. . The implementation principle of the search box is also the implementation principle of hyperlinks. The simplest implementation method is to use the submission function of HTML form elements to send the form data to the server for processing. Of course, we can also use JavaScript hooks to intercept data for partial processing on the front end, which will often be faster, safer, and better meet business needs. After mastering these skills, I believe your web pages will be more colorful.

The above is the detailed content of How to create html search box. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is useEffect? How do you use it to perform side effects? What is useEffect? How do you use it to perform side effects? Mar 19, 2025 pm 03:58 PM

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Explain the concept of lazy loading. Explain the concept of lazy loading. Mar 13, 2025 pm 07:47 PM

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code? What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code? Mar 18, 2025 pm 01:44 PM

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

How does currying work in JavaScript, and what are its benefits? How does currying work in JavaScript, and what are its benefits? Mar 18, 2025 pm 01:45 PM

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

How does the React reconciliation algorithm work? How does the React reconciliation algorithm work? Mar 18, 2025 pm 01:58 PM

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

How do you prevent default behavior in event handlers? How do you prevent default behavior in event handlers? Mar 19, 2025 pm 04:10 PM

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

What is useContext? How do you use it to share state between components? What is useContext? How do you use it to share state between components? Mar 19, 2025 pm 03:59 PM

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

What are the advantages and disadvantages of controlled and uncontrolled components? What are the advantages and disadvantages of controlled and uncontrolled components? Mar 19, 2025 pm 04:16 PM

The article discusses the advantages and disadvantages of controlled and uncontrolled components in React, focusing on aspects like predictability, performance, and use cases. It advises on factors to consider when choosing between them.

See all articles