html input mdn,<input type="checkbox">

本文详细介绍了HTML中复选框(Checkbox)的用法,包括其默认表现、如何设置默认选中、如何处理多选情况以及如何通过JavaScript操作其状态。复选框在表单提交时只发送当前选中的值,并可以通过name属性进行分组。此外,还讨论了复选框的indeterminate状态,该状态用于表示无法明确为真或假的情况,常用于有多个子选项的父选项。同时,提到了如何通过CSS和JavaScript来改进复选框的样式和交互体验。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

elements of type checkbox are rendered by default as boxes that are checked (ticked) when activated, like you might see in an official government paper form. The exact appearance depends upon the operating system configuration under which the browser is running. Generally this is a square but it may have rounded corners. A checkbox allows you to select single values for submission in a form (or not).

Note

Radio buttons are similar to checkboxes, but with an important distinction — radio buttons are grouped into a set in which only one radio button can be selected at a time, whereas checkboxes allow you to turn single values on and off. Where multiple controls exist, radio buttons allow one to be selected out of them all, whereas checkboxes allow multiple values to be selected.

A DOMString representing the value of the checkbox.

Supported common attributes

checked

A DOMString representing the value of the checkbox. This is not displayed on the client-side, but on the server this is the value given to the data submitted with the checkbox's name. Take the following example:

Subscribe to newsletter?

Subscribe

In this example, we've got a name of subscribe, and a value of newsletter. When the form is submitted, the data name/value pair will be subscribe=newsletter.

If the value attribute was omitted, the default value for the checkbox is on, so the submitted data in that case would be subscribe=on.

Note

If a checkbox is unchecked when its form is submitted, there is no value submitted to the server to represent its unchecked state (e.g. value=unchecked); the value is not submitted to the server at all. If you wanted to submit a default value for the checkbox when it is unchecked, you could include an inside the form with the same name and value, generated by JavaScript perhaps.

In addition to the common attributes shared by all elements, "checkbox" inputs support the following attributes:

Attribute

Description

Boolean; if present, the checkbox is toggled on by default

A Boolean which, if present, indicates that the value of the checkbox is indeterminate rather than true or false

The string to use as the value of the checkbox when submitting the form, if the checkbox is currently toggled on

A Boolean attribute indicating whether or not this checkbox is checked by default (when the page loads). It does not indicate whether this checkbox is currently checked: if the checkbox’s state is changed, this content attribute does not reflect the change. (Only the HTMLInputElement’s checked IDL attribute is updated.)

Note

Unlike other input controls, a checkbox's value is only included in the submitted data if the checkbox is currently checked. If it is, then the value of the checkbox's value attribute is reported as the input's value.

Unlike other browsers, Firefox by default persists the dynamic checked state of an across page loads. Use the autocomplete attribute to control this feature.

If the indeterminate attribute is present on the element defining a checkbox, the checkbox's value is neither true nor false, but is instead indeterminate, meaning that its state cannot be determined or stated in pure binary terms. This may happen, for instance, if the state of the checkbox depends on multiple other checkboxes, and those checkboxes have different values.

Essentially, then, the indeterminate attribute adds a third possible state to the checkbox: "I don't know." In this state, the browser may draw the checkbox in grey or with a different mark inside the checkbox. For instance, browsers on macOS may draw the checkbox with a hyphen "-" inside to indicate an unexpected state.

Note

No browser currently supports indeterminate as an attribute. It must be set via JavaScript. See Indeterminate state checkboxes for details.

The value attribute is one which all s share; however, it serves a special purpose for inputs of type checkbox: when a form is submitted, only checkboxes which are currently checked are submitted to the server, and the reported value is the value of the value attribute. If the value is not otherwise specified, it is the string on by default. This is demonstrated in the section Value above.

We already covered the most basic use of checkboxes above. Let's now look at the other common checkbox-related features and techniques you'll need.

The example we saw above only contained one checkbox; in real-world situations you'll be likely to encounter multiple checkboxes. If they are completely unrelated, then you can just deal with them all separately, as shown above. However, if they're all related, things are not quite so simple.

For example, in the following demo we include multiple checkboxes to allow the user to select their interests (see the full version in the Examples section).

Choose your interests

Coding

Music

In this example you will see that we've given each checkbox the same name. If both checkboxes are checked and then the form is submitted, you'll get a string of name/value pairs submitted like this: interest=coding&interest=music. When this string reaches the server, you need to parse it other than as an associative array, so all values, not only the last value, of interest are captured. For one technique used with PHP, see Handle Multiple Checkboxes with a Single Serverside Variable, for example.

To make a checkbox checked by default, you give it the checked attribute. See the below example:

Choose your interests

Coding

Music

In the above examples, you may have noticed that you can toggle a checkbox by clicking on its associated element as well as on the checkbox itself. This is a really useful feature of HTML form labels that makes it easier to click the option you want, especially on small-screen devices like smartphones.

Beyond accessibility, this is another good reason to properly set up elements on your forms.

In addition to the checked and unchecked states, there is a third state a checkbox can be in: indeterminate. This is a state in which it's impossible to say whether the item is toggled on or off. This is set using the HTMLInputElement object's indeterminate property via JavaScript (it cannot be set using an HTML attribute):

inputInstance.indeterminate = true;

A checkbox in the indeterminate state has a horizontal line in the box (it looks somewhat like a hyphen or minus sign) instead of a check/tick in most browsers.

There are not many use cases for this property. The most common is when a checkbox is available that "owns" a number of sub-options (which are also checkboxes). If all of the sub-options are checked, the owning checkbox is also checked, and if they're all unchecked, the owning checkbox is unchecked. If any one or more of the sub-options have a different state than the others, the owning checkbox is in the indeterminate state.

This can be seen in the below example (thanks to CSS Tricks for the inspiration). In this example we keep track of the ingredients we are collecting for a recipe. When you check or uncheck an ingredient's checkbox, a JavaScript function checks the total number of checked ingredients:

If none are checked, the recipe name's checkbox is set to unchecked.

If one or two are checked, the recipe name's checkbox is set to indeterminate.

If all three are checked, the recipe name's checkbox is set to checked.

So in this case the indeterminate state is used to state that collecting the ingredients has started, but the recipe is not yet complete.

var overall = document.querySelector('input[id="EnchTbl"]');

var ingredients = document.querySelectorAll('ul input');

overall.addEventListener('click', function(e) {

e.preventDefault();

});

for(var i = 0; i < ingredients.length; i++) {

ingredients[i].addEventListener('click', updateDisplay);

}

function updateDisplay() {

var checkedCount = 0;

for(var i = 0; i < ingredients.length; i++) {

if(ingredients[i].checked) {

checkedCount++;

}

}

if(checkedCount === 0) {

overall.checked = false;

overall.indeterminate = false;

} else if(checkedCount === ingredients.length) {

overall.checked = true;

overall.indeterminate = false;

} else {

overall.checked = false;

overall.indeterminate = true;

}

}

Note

If you submit a form with an indeterminate checkbox, the same thing happens as if the checkbox were unchecked — no data is submitted to represent the checkbox.

Checkboxes do support validation (offered to all s). However, most of the ValidityStates will always be false. If the checkbox has the required attribute, but is not checked, then ValidityState.valueMissing will be true.

The following example is an extended version of the "multiple checkboxes" example we saw above — it has more standard options, plus an "other" checkbox that when checked causes a text field to appear to enter a value for the "other" option. This is achieved with a simple block of JavaScript. The example also includes some CSS to improve the styling.

Choose your interests

Coding

Music

Art

Sports

Cooking

Other

Submit form

html {

font-family: sans-serif;

}

form {

width: 600px;

margin: 0 auto;

}

div {

margin-bottom: 10px;

}

fieldset {

background: cyan;

border: 5px solid blue;

}

legend {

padding: 10px;

background: blue;

color: cyan;

}

var otherCheckbox = document.querySelector('input[value="other"]');

var otherText = document.querySelector('input[id="otherValue"]');

otherText.style.visibility = 'hidden';

otherCheckbox.addEventListener('change', () => {

if(otherCheckbox.checked) {

otherText.style.visibility = 'visible';

otherText.value = '';

} else {

otherText.style.visibility = 'hidden';

}

});

BCD tables only load in the browser

and the HTMLInputElement interface which implements it.

The :checked and :indeterminate CSS selectors let you style checkboxes based on their current state

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值