1
我有這樣的事情:的Javascript選擇單選按鈕改變PHP函數
<p>Until: <input value="<?php echo until_3months();?>" type="text" name="until"/></p>
<input type="radio" name="unt" id="3" value="3" checked="checked">3 months
<input type="radio" name="unt" id="6" value="6">6 months
<input type="radio" name="unt" id="12" value="12">12 months
我想,當用戶查詢3/6/12個月,從收音機到改變我的PHP函數來until_3months()/ until_6months()/ until_12months()。我的事情是不可能的,所以我可以改變沒有PHP功能的價值,只是JavaScript。我的PHP函數將在今後3/6/12個月內計算。喜歡的東西保修期至+3/+6 /12個月從現在開始,我不知道如何在JavaScript替換此:
function until_3months(){
$time = strtotime(date("Y-m-d"));
$final = date("Y-m-d", strtotime("+3 month", $time));
return $final;
}
這完美的作品。謝謝 ! –