我可能會丟失一些非常明顯的東西,但不知何故,我正在努力計算span標籤內的字符。 span是動態填充的,我試圖獲得它的長度,包括空格,以調整列的寬度。 如果我只運行文本()或HTML()我可以得到內容:跨度標籤上的jquery count字符
<span id="vlen00">someword</span>
vlenght = $('#vlen00').text();//vlenght is assigned 'someword'
vlenght = $('#vlen00').html();//this also gives me 'someword'
但是,當我試圖尺寸它像:
vlenght = $('#vlen00').text().lenght;//that gives me 'undefined'
vlenght = vlenght.lenght;//that also gives me 'undefined'
謝謝!
當時的拼寫錯誤「長度」是故意的?即長度。這將有點問題。 – 2013-04-08 10:23:57
哈哈哈大錯字。 – Ronophobia 2013-04-08 10:26:55
**確切**重複http://stackoverflow.com/questions/4376276/jquery-lenght-of-attribute-undefined大聲笑 – Ejaz 2013-04-08 10:29:54