Introduction to the connection and difference between the values of html, val and text attributes in jquery_jquery
WBOY
Release: 2016-05-16 17:06:22
Original
1200 people have browsed it
First of all, there are two methods in the html attribute, one with parameters and one without parameters
1. No parameters html(): Get the html content of the first matching element. This function cannot be used with XML documents. But it can be used for XHTML documents, returning a String
Example:
html page code:
Hello
jquery code: $("div").html();
Result: Hello
2. Parameter html (val): Set the html content of each matching element . This function cannot be used with XML documents. But it can be used for XHTML documents. Return a jquery object
html page code:
jquery code: $("div").html("
Nice to meet you< ;/p>");
Result: [
Nice to meet you
]
Secondly, the text attribute has Two methods, one with parameters and one without parameters
1. No parameters text(): Get the content of all matching elements. The result is the text combined from the text content contained in all matching elements. What is returned is a String
example:
html page code:
Hello fine
jquery code: $("p").text();
Result: HelloofineThankyou!
2. There is text parameter (val): Sets the text content of all matching elements, similar to html(), but will encode HTML (replace "<" and ">" with corresponding HTML entities). Returns a jquery object
html page code:
Test Paragraph.
jquery code: $("p").text("Some new text.") ;
Result:[
Some new text.
]
Finally, there are also two methods in the val() attribute, One with reference and one without reference.
1. Parameterless val(): Get the current value of the first matching element. In jQuery 1.2, you can return the value of any element. Including select. If multiple selections are made, an array containing the selected values will be returned.
2. Parameter val (val): Set the value of each matching element. In jQuery 1.2, this can also assign values to check, select, and radio elements and return a jquery object
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn