jquery Manipulating HTML elements (setting content and properties)

Source: Internet
Author: User

Set Content-text (), HTML (), and Val ()

We will use the three same methods in the previous chapter to set the content:

    • Text ()-Sets or returns the text content of the selected element
    • HTML ()-Sets or returns the contents of the selected element (including HTML tags)
    • Val ()-Sets or returns the value of a form field

The following example shows how to set the content by using the text (), HTML (), and Val () methods:

Instance
$ ("#btn1"). Click (function () {  $ ("#test1"). Text ("Hello world!");}); $ ("#btn2"). Click (function () {  $ ("#test2"). HTML ("<b>hello world!</b>");}); $ ("#btn3"). Click (function () {  $ ("#test3"). Val ("Dolly Duck");});
The callback function for text (), HTML (), and Val ()

The three jQuery methods above: Text (), HTML (), and Val () also have a callback function. The callback function consists of two parameters: the subscript of the current element in the selected element list, and the original (old) value. Then return the string you want to use with the new value of the function.

The following example shows the text () and HTML () with a callback function:

Instance
$ ("#btn1"). Click (function () {  $ ("#test1"). Text (function (i,origtext) {    return "old text:" + origtext + "New text : Hello world!    (Index: "+ i +") ";  }";}); $ ("#btn2"). Click (function () {  $ ("#test2"). HTML (function (i,origtext) {    return "old HTML:" + origtext + "New html : Hello <b>world!</b>    (index: "+ i +") ";  }";});
Setting Properties-attr ()

The JQuery attr () method is also used to set/change property values.

The following example shows how to change the value of the href attribute in the (set) Link:

Instance
$ ("button"). Click (function () {  $ ("#w3s"). attr ("href", "http://www.w3school.com.cn/jquery");});

The attr () method also allows you to set multiple properties at the same time.

The following example shows how to set the href and title properties at the same time:

Instance
$ ("button"). Click (function () {  $ ("#w3s"). attr ({    "href": "Http://www.w3school.com.cn/jquery",    " Title ":" W3school jQuery Tutorial "  });
callback function for attr ()

The JQuery Method attr () also provides a callback function. The callback function consists of two parameters: the subscript of the current element in the selected element list, and the original (old) value. Then return the string you want to use with the new value of the function.

The following example shows the attr () method with a callback function:

Instance
$ ("button"). Click (function () {  $ ("#w3s"). attr ("href", function (i,origvalue) {    return origvalue + "/jquery";  }); });


jquery Manipulating HTML elements (setting content and properties)

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.