如果其中包含日期,我正在尝试编写更改 div 的颜色的代码(使用“carrythatweight”类)。
这是我正在使用的 HTML:
<div class="carrythateright">groan...</div>
<div class="carrythateright">what in the world is going on !!!</div>
<div class="carrythateright">stackoverflow is SO helpful. It is now 12/26/2012 !!!!</div>
这是我正在使用的脚本,但它并没有真正起作用:
var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()
$(document).ready(function() {
$(".carrythatweight:contains('' + month + '/' + day + '/' + year +'')").css("color", "#00bbbb");
});
这是小提琴