"HTML, CSS, javascript-10" jquery-manipulation elements (property CSS and document handling)

Source: Internet
Author: User

First, get content-text, HTML, Val ()

Three simple and practical jQuery methods for DOM manipulation:

    • 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 get the content using the JQuery text () and HTML () methods:

$ ("#btn1"). Click (function() {  alert ("text:" + $ ("#test"). Text ()); $ ("#btn2"). Click (function() {  alert ("HTML:" + $ ("#test"). html ());});

The following example shows how to get the value of an input field using the JQuery Val () method:

$ ("#btn1"). Click (function() {  alert ("value:" + $ ("#test"). Val ()) ;

The following example modifies the value of text to modify all the selected objects.

<body>    <div>aaaa</div>    <div>aaaa</div>    <div>aaaa</div>    <input type= "button" value= "Point Me" onclick= "Func ();" >    <script src= "jquery.js" ></script>    <script>        function  Func () {            $ ("div"). Text ("Hello world!") )        }    </script></body>

"HTML, CSS, javascript-10" jquery-manipulation elements (property CSS and document handling)

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.