請幫我在jQuery的一個簡單的問題。我有一個頁面上的列表項的負載,我需要比較它們中的字符串的長度。如果它們大於100個字符,那麼我需要向'li'添加一個類,否則沒有任何反應。 我迄今爲止代碼:比較列表項中的字符串長度
<ul id="mylist">
<li>This is a string with more than 100 characters in it. This is a string with more than 100 characters in it.</li>
<li>This is a string with less than 100</li>
</ul>
var len = $("#mylist li").text().length;
$("#mylist li").each(function() {
if (len > 100) {
$(this).addClass("test");
}
});
感謝亞歷克斯,這個作品呢! – madameFerry