Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to write the selected event in checkbox

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces how to write the checkbox selection event, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor take you to understand it.

When the checkbox selection event is in the front end, you often need to select the multi-check box according to the return of the background data. It can be converted into an array based on the data returned by the background, and then selected by val ([array]). Jquerycheckbox selects, changes state, change, and click events.

There are three ways for jquery to judge the selection of checkbox:

.attr ('checked); / / look at version 1.6 + return: "checked" or "undefined"; 1.5-return: true or false

.prop ('checked'); / / 16+:true/false

.is (': checked'); / / all versions: true/false//, don't forget the colon

Several ways to write the jquery assignment checkbox selected:

All jquery versions can be assigned as follows:

/ $("# cb1") .attr ("checked", "checked")

/ $("# cb1") .attr ("checked", true)

4 assignments of jquery1.6+:prop:

/ / $("# cb1"). Prop ("checked", true); / / it's very simple.

/ / $("# cb1") .prop ({checked:true}); / / map key-value pair

/ / $("# cb1") .prop ("checked", function () {

The returntrue;// function returns true or false

})

/ / remember this: $("# cb1") .prop ("checked", "checked")

Checkboxclick and change events

Method 1:

$("# ischange") .change (function () {

Alert ("checked")

})

Method 2:

$(function () {)

If ($.browser.msie) {

$('input:checkbox') .click (function () {

This.blur ()

This.focus ()

})

}

Method 3:

$("# ischange") .change (function () {

Alert ("checked")

})

})

Method 4:

$(function () {if ($.browser.msie) {$('input:checkbox') .click (function () {this.blur (); this.focus ();});}})

Method 5:

$(document) .ready (function () {

$("testCheckbox") .change (function () {

Alert ("Optionchanged!")

})

})

Thank you for reading this article carefully. I hope the article "how to write the checkbox selection event" shared by the editor will be helpful to everyone. At the same time, I also hope you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report