爲什麼我不能使用jQuery中的php計算出的數字?在Javascript中使用PHP變量/ jQuery
我已經試過這樣:
<div id="time">
<? echo until();?>
</div>
var until = $("#time").html();
而且
var until = <? echo until();?>;
但是,沒有一個工作d:
編輯: 計算出的數量將是472541,而功能:
<?
/**
* @desc Time until tuesday
* @param string Time format
* @return string timestamp
*/
function until($format = ""){
$now = strtotime("now");
$nextTuesday = strtotime("-1 hour next tuesday");
$until = $nextTuesday - $now;
if(empty($format)){
return $until;
}else{
return date("$format",$until);
}
}
>
編輯編輯: 不知道是什麼只是happend,但似乎現在的工作:O:d 非常感謝,大家:d
請以得到(doog)幫助更新你的答案?等等? – Veger
你可以發佈,直到方法和生成的HTML? – Joe
您是否嘗試過查看生成的源代碼? – Chronial