0

我有这段代码:

        <select id="frm_type" name="typeId">
                <?php foreach($product_types as $product) : ?>
                    <?php if ($product['id'] == $product_details['typeId']) $selected = " SELECTED"; else $selected = ""; ?>
                    <option value="<?=$product['id'];?>"<?=$selected;?>><?=$product['partNumber'];?> (<?=$product['title'];?>)</option>
                <?php endforeach; ?>
        </select>

这只是用来自数据库的数据填充下拉列表/选项框。这在用于创建选择和发布项目的表单中效果很好,但是我希望在编辑页面上使用相同的功能。

编辑页面显示当前选定的值,如果未更改,则在发布时,此输入不会发布任何内容。

我相信我在上面使用 $selected... 的位显示了选定的选项(它确实如此)它只是不发送选定的数据。

任何人都可以提供任何建议。

4

2 回答 2

1

尝试

<select id="frm_type" name="typeId">
<?php foreach($product_types as $product) : 
        $selected = ($product['id'] === $product_details['typeId'])
                    ? "selected='selected'"
                    : ""; 
?>
      <option value="<?=$product['id']?>" <?=$selected?> > 
         <?=$product['partNumber']?> (<?=$product['title']?>)
      </option>
<?php endforeach; ?>
</select>
于 2012-08-08T13:25:33.800 回答
0

尝试

<select id="frm_type" name="typeId" disabled="disabled">
                <?php foreach($product_types as $product) : ?>
                    <?php if ($product['id'] == $product_details['typeId']) $selected = " selected='selected'"; else $selected = ""; ?>
                    <option value="<?=$product['id'];?>"<?=$selected;?>><?=$product['partNumber'];?> (<?=$product['title'];?>)</option>
                <?php endforeach; ?>
        </select>
于 2012-08-08T13:21:24.917 回答