我怎样才能正确地写这个?我想检查从 publish_start 日到 publish_end 日已经过去了多少天,当它们超过 30 天时,将显示一条消息。
var a = new Date("<?php echo $this->item->publish_start; ?>");
var b = a.getDate();
var c = new Date("<?php echo $this->item->publish_end; ?>");
var d = c.getDate();
var e = d - b ;
if( e > 30) {
alert("<?php echo JText::_('You cant put more than 30 days'); ?>");
return false;
}