search
HomeWeb Front-endJS TutorialA brief analysis of the differences between html(), text(), and val() in JQuery_jquery

1.HTML

html(): Get the html content of the first matching element. This function cannot be used with XML documents. But can be used for XHTML documents

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.

2.TEXT

text(): Get the content of all matching elements.

The result is the text combined from the text content contained in all matching elements. This method works for both HTML and XML documents.

text(val): Set the text content of all matching elements

Similar to html(), but will encode HTML (replace "" with corresponding HTML entities).

3.VAL

val(): Get the current value of the first matching element.

val(val): Set the value of each matching element.

The above content is copied from the JQuery help document, so I won’t go into too much nonsense. Here are some exercises I did, the code is as follows:

While doing the exercises, I discovered another difference between html and text

When

html() removes the content of an element, the format under the selected element can also be retrieved.

For example:

Write Less Do More

If we use var strHTML = $("#divShow").html(); to get it,

The result is:Write Less Do More

If we use var strHTML2 = $("#divShow b i").html(); to get it

The result is Write Less Do More

And text does not have the first situation,

If we take var strText = $("#divShow").text();

The result is Write Less Do More

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 <head>
  <base href="<%=basePath%>">
 <script src="js/jquery.js" type="text/javascript"></script>
  <!--
  <script src="http://code.jquery.com/jquery-latest.js"></script>
   -->
  <title> 获取或设置元素的内容</title>
  <style type="text/css">
    body{font-size:15px;text-align:center}
    div{border:solid 0px #666;padding:5px;width:220px;margin:5px}
  </style>
  <script type="text/javascript">
    $(function() {
      var strHTML = $("#divShow").html();// 获取HTML 内容(包含div下面的两个格式)
      var strHTML2 = $("#divShow b i").html(); //获取HTML内容
      var strHTML3 = $("div").html();
      var strText = $("#divShow").text();// 获取文本内容
      var strText2 = $("div").text();
     
      $("#divHTML").html(strHTML);// 设置HTML 内容
      $("#divHTML2").html(strHTML2); //设置HTML内容
      $("#divHTML3").html(strHTML3); //设置HTML内容
      $("p").html(strHTML);
     
      $("#divText").text(strText);// 设置文本内容
      $("#divText2").text(strText2);// 设置文本内容
      $("a").text(strText);
     
      $("select").change(function() { // 设置列表框change 事件
       // 获取列表框所选中的全部选项的值
       alert($("select").val());
       var strSel = $("select").val().join(",");
       $("input").val(strSel); // 显示列表框所选中的全部选项的值
      })
    })
  </script>
 </head>
 <body>
  <table border="1" bordercolor="#A9A9A9" cellspacing="0">
  <tr><td>******************************</td><td>*******************************************</td></tr>
  <tr>
  <td><div id="divShow"><b><i>Write Less Do More</i></b></div></td>
    <td>这是原内容</td>
  </tr>
  <tr>
  <td><div id="divShow"><b><i>Write XXXX Do XXXX</i></b></div></td>
    <td>这是原内容</td>
  </tr>
<tr><td>******************************</td><td>*******************************************</td></tr>
  <tr>
    <td><div id="divHTML">1</div></td>
    <td>获取原内容(连带内容的格式)后以html方式输出</td>
  </tr>
  <tr>
    <td><div id="divHTML2">2</div></td>
    <td>获取原内容(不带内容的格式)后以html方式输出</td>
  </tr>
  <tr>
    <td><div id="divHTML3">3</div></td>
    <td>获取原内容(获取第一个匹配元素的内容)后以html方式输出</td>
  </tr>
  <tr>
    <td><p></p></td>
    <td>HTML方式设置段落的文本</td>
  </tr>
  <tr>
    <td><p></p></td>
    <td>如果这个也有内容了,就是设置每个匹配元素的内容</td>
  </tr>
<tr><td>******************************</td><td>*******************************************</td></tr>
  <tr>
  <td><div id="divText">4</div></td>
  <td>获取原内容后以text方式输出</td>
  </tr>
  <tr>
  <td><div id="divText2"></div></td>
  <td>获取原内容(获取所有匹配元素的内容)后以text方式输出</td>
  </tr>
  <tr>
    <td><a></a></td>
    <td>TEXT方式设置段落的文本</td>
  </tr>
  <tr>
    <td><a></a></td>
    <td>如果这个也有内容了,就是设置每个匹配元素的内容</td>
  </tr>
  <tr><td>******************************</td><td>*******************************************</td></tr>
  <tr>
  <td>
  
  <select multiple="multiple"style="height:96px;width:85px">
      <option value="1">Item 1</option>
      <option value="2">Item 2</option>
      <option value="3">Item 3</option>
      <option value="4">Item 4</option>
      <option value="5">Item 5</option>
      <option value="6">Item 6</option>
    </select>
    <select>
      <option value="7">Item 7</option>
      <option value="8">Item 8</option>
      <option value="9" selected>Item 9</option>
    </select>
  </td>
  <td>
  </td>
  </tr>
  <tr>
  <td><input ></input></td>
  <td><input ></input></td>
  </tr>
  </table>
 </body>
</html>

You can also verify it yourself. The above is an experiment I did. The JQuery I used is 1.6

To summarize:

.html() is used to read and modify the HTML tag of the element
.text() is used to read or modify the plain text content of the element
.val() is used to read or modify the value of a form element.

Comparison of the functions of these three methods

.html(), .text(), and .val() are all used to read the content of the selected element; only .html() is used to read the HTML content of the element (including its Html tag), .text() is used to read the plain text content of the element, including its descendant elements, and .val() is used to read the "value" value of the form element. Among them, the .and .text() methods cannot be used on form elements, and .val() can only be used on form elements; in addition, when the .html() method is used on multiple elements, only the first element is read; The .val() method is the same as .html(). If it is applied to multiple elements, only the "value" value of the first form element can be read, but .text() is different from them. If .text () When applied to multiple elements, the text content of all selected elements will be read.

.html(htmlString), .text(textString) and .val(value) are all used to replace the content of the selected element. If the three methods are used on multiple elements at the same time, they will be replaced. The contents of all selected elements.

.html(), .text(), and .val() can all use the return value of the callback function to dynamically change the content of multiple elements.

Statement
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
JavaScript Engines: Comparing ImplementationsJavaScript Engines: Comparing ImplementationsApr 13, 2025 am 12:05 AM

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

Beyond the Browser: JavaScript in the Real WorldBeyond the Browser: JavaScript in the Real WorldApr 12, 2025 am 12:06 AM

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Apr 11, 2025 am 08:23 AM

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)Apr 11, 2025 am 08:22 AM

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

JavaScript: Exploring the Versatility of a Web LanguageJavaScript: Exploring the Versatility of a Web LanguageApr 11, 2025 am 12:01 AM

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

The Evolution of JavaScript: Current Trends and Future ProspectsThe Evolution of JavaScript: Current Trends and Future ProspectsApr 10, 2025 am 09:33 AM

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

Demystifying JavaScript: What It Does and Why It MattersDemystifying JavaScript: What It Does and Why It MattersApr 09, 2025 am 12:07 AM

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

Is Python or JavaScript better?Is Python or JavaScript better?Apr 06, 2025 am 12:14 AM

Python is more suitable for data science and machine learning, while JavaScript is more suitable for front-end and full-stack development. 1. Python is known for its concise syntax and rich library ecosystem, and is suitable for data analysis and web development. 2. JavaScript is the core of front-end development. Node.js supports server-side programming and is suitable for full-stack development.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor