Difference between val() and text()

Difference between val() and text()

问题

What the difference between jQuery's functions val() and text()?

Where would you use one over the other?

解答

.val() works on input elements (or any element with a value attribute?) and .text() will not work on input elements.

.val() gets the value of the input element -- regardless of type. .text() gets the innerText (not HTML) of all the matched elements:

.text()

The result is a string that contains the combined text contents of all matched elements. This method works on both HTML and XML documents. Cannot be used on input elements. For input field text use the val attribute.

.val()

Get the content of the value attribute of the first matched element

 

实战

<input type="hidden" name="ctl00$cphMain$ucProfile$Avatar$hffulList" id="ctl00_cphMain_ucProfile_Avatar_hffulList" value="[{&quot;FileName&quot;:&quot;Hearthstone.jpg&quot;,&quot;Size&quot;:539890,&quot;ContentType&quot;:&quot;image/jpeg&quot;,&quot;PhysicalName&quot;:&quot;aae0a752-a07c-4d3f-9be0-c7caf5346e69.jpg&quot;,&quot;FileuploadStoreType&quot;:0,&quot;FileuploadId&quot;:0,&quot;FilePath&quot;:null,&quot;TempPath&quot;:null}]">

 

$('#ctl00_cphMain_ucProfile_Avatar_hffulList').val()
"[{"FileName":"Hearthstone.jpg","Size":539890,"ContentType":"image/jpeg","PhysicalName":"aae0a752-a07c-4d3f-9be0-c7caf5346e69.jpg","FileuploadStoreType":0,"FileuploadId":0,"FilePath":null,"TempPath":null}]"

 

$('#ctl00_cphMain_ucProfile_Avatar_hffulList').text()
""

 

 

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(205)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2017-07-15 Install the IIS 6.0 Management Compatibility Components in Windows 7 or in Windows Vista from Control Panel
2016-07-15 Task
2015-07-15 WCF 托管在IIS中遇到Http的错误
2015-07-15 Default Web Site
2015-07-15 Learning WCF Chapter1 Hosting a Service in IIS
2015-07-15 git subtree 拆分split repository
点击右上角即可分享
微信分享提示