


HTML, CSS and jQuery: Make a multi-select dropdown menu with checkboxes
HTML, CSS and jQuery: Making a multi-select drop-down menu with checkboxes
With the continuous development of the Internet, web design and interactive experience have become more and more important. In the past, using mouse clicks to make selections was a common interaction method. However, with the diversification of user needs, we need more flexible and intelligent interaction methods. This article will introduce how to use HTML, CSS and jQuery to make a multi-select drop-down menu with checkboxes.
First, we need to create a basic HTML structure, containing a select box and several options. The code is as follows:
<!DOCTYPE html> <html> <head> <title>多选下拉菜单</title> <link rel="stylesheet" type="text/css" href="style.css"> <script src="jquery.js"></script> <script src="script.js"></script> </head> <body> <div class="dropdown"> <button class="dropbtn">选择项</button> <div class="dropdown-content"> <input type="checkbox" id="item1" name="item1" value="item1"> <label for="item1">选项1</label><br> <input type="checkbox" id="item2" name="item2" value="item2"> <label for="item2">选项2</label><br> <input type="checkbox" id="item3" name="item3" value="item3"> <label for="item3">选项3</label><br> </div> </div> </body> </html>
Next, we need to use CSS to beautify the drop-down menu. Add the following code in the style.css file:
/* 隐藏下拉菜单 */ .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; } /* 隐藏复选框 */ .dropdown-content input[type="checkbox"] { display: none; } /* 样式化下拉菜单按钮 */ .dropbtn { background-color: #4CAF50; color: white; padding: 10px; font-size: 16px; border: none; cursor: pointer; } /* 鼠标移动到下拉菜单上时显示选项 */ .dropdown:hover .dropdown-content { display: block; } /* 选中选项时改变背景颜色 */ .dropdown-content input[type="checkbox"]:checked + label { background-color: #ccc; }
In the above code, we have used some basic CSS styles to hide and show the drop-down menu, as well as change the background color of the selected option.
Now, we need to use jQuery to implement the interactive behavior of the drop-down menu. Add the following code to the script.js file:
$(document).ready(function() { // 点击按钮时显示或隐藏下拉菜单 $(".dropbtn").click(function() { $(".dropdown-content").toggle(); }); // 当有选项被选中或取消选中时,更新按钮文本 $(".dropdown-content input[type='checkbox']").change(function() { var selectedItems = []; $(".dropdown-content input[type='checkbox']:checked").each(function() { selectedItems.push($(this).next("label").text()); }); var buttonText = selectedItems.join(", "); if(buttonText === "") { buttonText = "选择项"; } $(".dropbtn").text(buttonText); }); });
In this JavaScript code, we use jQuery’s toggle()
method to toggle the display and hiding of the drop-down menu. At the same time, we also listen to the change
event of the check box. When the option is selected or unchecked, the text content on the button will be automatically updated.
Finally, we need to download and introduce the jQuery library and save the above three files in the same folder.
By combining the above HTML, CSS and jQuery, we can easily make a multi-select drop-down menu with checkboxes. Such a drop-down menu will provide users with a more flexible and convenient selection experience and improve the interactivity of the web page.
Summary: Through the combination of HTML, CSS and jQuery, we can easily create a variety of highly interactive web page elements. One example of this is a multi-select drop-down menu that provides a more flexible and intelligent way to select. I hope the sample code in this article can be helpful to you and help you achieve a better interactive experience in web design.
The above is the detailed content of HTML, CSS and jQuery: Make a multi-select dropdown menu with checkboxes. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.

To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-

There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text
