作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
HTML:
<li>Tue, 15th May 2012 10:11</li>
<li>Tue, 15th May 2012 10:12</li>
<li>Tue, 15th May 2012 10:13</li>
<li>Tue, 15th May 2012 10:14</li>
<li>Tue, 15th May 2012 10:15</li>
<li>Tue, 16th May 2012 21:08</li>
<li>Tue, 16th May 2012 21:07</li>
<li>Tue, 16th May 2012 21:06</li>
<code></code>
jQuery:
$("li").each(function () {
words = $(this).text().split(' ');
xxx = words[1]+" "+words[2]+" "+words[3]+",";
$("code").append(xxx);
});
我现在到了这一步,但我不知道如何检查重复日期并附加唯一日期
最佳答案
这样做:-
if ($("code:contains('"+xxx+"')").length == 0)
$("code").append(xxx);
要处理逗号,请尝试以下方式:-
if ($("code:contains('"+xxx+"')").length == 0){
if ($("code").text() == '')
$("code").append(xxx);
else
$("code").append(","+xxx);
}
要处理这种类型的输出,请尝试以下方式:-
$("li").each(function () {
words = $(this).text().split(' ');
xxx = words[1]+" "+words[2]+" "+words[3];
if ($("code:contains('"+xxx+"')").length == 0){
if ($("code").text() == '')
$("code").append('["'+xxx);
else
$("code").append('","'+xxx);
}
});
$("code").append('"]');
输出:
["15th May 2012","16th May 2012"]
关于jquery - 从 <li> 获取文本并检查重复项并附加它...通过 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10599885/
我是一名优秀的程序员,十分优秀!