The differences between the "checkbox" and "Select" Objects in JavaScript and jquery are sorted

Source: Internet
Author: User

CheckBox

CheckBox selection and Cancellation methods in JavaScript and jquery

Javascript:

document.getElementById ("MyCheck"). Checked=true

document.getElementById ("MyCheck"). Checked=false

Jquery:

$ ("#myCheck"). attr ("Checked", "checked");

$ ("#myCheck"). Removeattr ("checked");//Cancel Select all

Select

select gets the option value in JavaScript and jquery

Javascript:

var Mylist=document.getelementbyid ("MyList");

Get ID Mylist.value

Gets the option value Mylist.options[mylist.selectedindex].text

Jquery:

Gets the ID $ ("#myList"). Val ()

Gets the option value $ ("#myList option:selected"). Text ()

select assignment in JavaScript and jquery

Javascript:

var Mylist=document.getelementbyid ("MyList");

Mylist.options[1].selected=true;

Jquery:

$ ("#myList"). Get (0). options[2].selected = true;


Original Address http://haiqiancun.com/bbs/bbsPage/0/detail/297e9e7946a599780146a5a38dde0003/1/20140623141930




The differences between the "checkbox" and "Select" Objects in JavaScript and jquery are sorted

Related Article

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.