我正在尝试在jquery中更新此项目的文本,但我似乎无法选择它:
<label for="ctl00_m_g_29f26907_677f_4b59_92e6_d688d334f136_ctl00_fvMain_DateTo" class="someClass">TEXT</label>
$("label[for$='DateTo']").length //nope
$('label [for$="DateTo"]').length //nope
$('label [for="ctl00_m_g_29f26907_677f_4b59_92e6_d688d334f136_ctl00_fvMain_DateTo"]').length //nothing
如何选择(并更新标签文本)此html?
编辑我在[jsfiddle里面的[chrome console]中输入的内容......!
$("label[for$='DateTo']").length
TypeError: Cannot read property 'length' of null
编辑它必须与Chrome控制台有关吗?我没有获得值,但实际更新代码有效http://jsfiddle.net/e84MG/5/ ...令人困惑