jQuery1.9.1 Adjustment method for checkbox (prop) _jquery

Source: Internet
Author: User

In the jquery 1.8.x version, our check and uncheck actions for the checkbox are as follows:

Decide whether to select

Copy Code code as follows:

$ (' #checkbox '). Prop (' checked ')

To set the check and uncheck State:

Copy Code code as follows:

$ (' #checkbox '). attr (' checked ', true)
$ (' #checkbox '). attr (' checked ', false)

But this method is not the same in jquery1.9.1.

Ie10,chrome,ff, for the selected state, the first $ (' #checkbox '). attr (' checked ', true) enables
But when cleared by code, the next time you pass the code $ (' #checkbox '). attr (' checked ', true) to select
Although the code has checked= ' checked ', but the screen performance is not ticked.
There is no such problem under IE8,IE6.

After investigating the relevant information, it was found that attr (' checked ', true) is now replaced by prop (' checked ', true)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.