我正在發送一些編碼數據到一個數組並嘗試檢索它們。我正在使用以下代碼如何從數組中獲取不同的值?
var holiday_list =<?php echo json_encode($calendar_results); ?>;
var events = []; //The events array
$.each(holiday_list, function(key, value) {
events.push({
title: value.type, //get the type(am or pm)
start: value.date_cal, //date of the calendar
// className: "fc-event-skin22"
});
有兩種類型。上午和下午。我想把所有的結果都變成一個變量,把所有的結果變成一個變量。如果有人知道如何做到這一點,給我一個想法。我使用php codeigniter框架。提前致謝。
您需要顯示* value.type *包含的值,它是字面意義上的「am''和」pm「嗎? – RobG
你可以使用一個簡單的if條件來檢查它的值。type是am或pm,並將其推送到一個單獨的數組中 –
如果你可以發佈你的$ calender_results將會很好。 –