0

PHP コードを使用して ajax 呼び出しでドロップダウン リストを取得したい。

$outputRes = '';
$reminderDetails["interval_type"] = value of dropdown this may varies. I want to keep value selected="selected"

以下は、ajax呼び出しからの私の期待される出力です

$outputRes .= '<select id="reminder_int_type" name="reminder_int_type" class="change">
                 <option value="1" '.if($reminderDetails["interval_type"] == 1){ \'selected="selected"\'; }.'>days</option>
                 <option value="2">Hours</option>
                 <option value="3">Minutes</option>
              </select>';
echo $outputRes; exit;

以下のようなコードを使用できますが、多くのオプションタグがあるため、実行可能に見えません

$outputRes .= '<select id="reminder_int_type" name="reminder_int_type" class="change">
                 <option value="1" ';
if($reminderDetails["interval_type"] == 1){ $outputRes .= 'selected="selected"';}
$outputRes .= '>days</option>
                 <option value="2">Hours</option>
                 <option value="3">Minutes</option>
              </select>';
echo $outputRes; exit;

正しい構文を書くのに問題があります。

4

2 に答える 2

0

コードに基づいて、次のように実行できます。

$outputRes = '';
$reminderDetails["interval_type"] = value of dropdown this may varies. I want to keep value selected="selected"

$interval = array("Days", "Hours", "Minutes");

$outputRes .= '<select id="reminder_int_type" name="reminder_int_type" class="change">';

foreach ($interval as $k => $v) {
    $k = $k + 1; // to keep your values beginning at 1.
    $outputRes .= '<option value="'.$k.'"'
    if ($reminderDetails["interval_type"] == $k) {
        $outputRes .= 'selected="selected"';
    }
    $outputRes .= '>';
    $outputRes .= $v
    $outputRes .= '</option>';
}

$outputRes .= '</select>';

代わりに JSON を返し、ブラウザ側で解析することをお勧めします。json_encodeを参照してください

于 2013-03-26T07:19:30.280 に答える
0
$reminderDetails["interval_type"] = 'value of dropdown this may varies. I want to keep value selected="selected"';

$result = array('array from which you want to create a dropdown');
$outputRes = '<select id="reminder_int_type" name="reminder_int_type" class="change">';
foreach($result as $optionValue=>$optionName)
{
   $is_selected = ($reminderDetails["interval_type"] == $optionValue)?'selected':'';
   $outputRes   .= "<option value=$optionValue $is_selected>$optionName</option>"

}

$outputRes . ="</select>";
echo $outputRes; exit;

アイデアが得られることを願っています..配列からドロップダウンを動的に作成していると仮定しています

于 2013-03-26T07:20:59.697 に答える