如何检查预设日期(2013 年 9 月 13 日)是否等于 JQuery 中的当前日期 - 如果是,则运行脚本。这是我现在拥有的代码,但它不起作用。谢谢!
<script type="text/javascript">
$(document).scroll(function () {
var y = $(this).scrollTop();
var x = $("#third").position();
var date = new Date();
var today = new Date(2013,09,13);
$("#dot").hide();
if (y > (x.top - 50) && date == today) {
$("#dot").show();
$("#dot").addClass(
"animation");
}
else {
$("#dot").removeClass(
"animation");
}
});</script>