下面的 HTML 显示同一 DATE 类中的日期和时间。这不好,因为我想独立地设计它们。但我不能按原样,所以我认为可以注入 jquery 来拆分它。
<div class="container">
<a class="title" href="http://www.example.com">Headlines Goes Here</a>
<div class="date">Jan 29, 2013 12:05:00 PM EST</div>
<div class="post">
<p>Content Goes Here</p>
</div>
</div>
我希望在有人的帮助下,这可以通过在 DATE 类中附加来解决,因此输出如下所示:
<div class="container">
<a class="title" href="http://www.example.com">Headlines Goes Here</a>
<div class="date">Jan 29, 2013</div><div class="time">12:05:00 PM EST</div>
<div class="post">
<p>Content Goes Here</p>
</div>
</div>
到目前为止,这是我的 JQUERY,我将其设置为红色,因此我可以看到物理变化,有人可以帮助解决这个问题吗?我的 jquery 显然不正确。
$(window).load(function(){
if ($(".date:contains(', 2013')").length)
this.parentNode.append(this).html("</div><div class=time style=color:red>");
});
这是我的小提琴:http: //jsfiddle.net/3ZWkQ/