gpt4 book ai didi

cakephp - 如何在 Cakephp 中添加 id 和 class 来选择框

转载 作者:行者123 更新时间:2023-12-04 16:50:20 24 4
gpt4 key购买 nike

我是 cakephp 的新手,所以我不知道该怎么做...我有一个 View 页面,其中有一个显示时区的选择框

  <?php

echo $this->Timezone->select('timezone');

?>

我想给它添加 'id' 、 'class' 和标签 .. 如果标签不可能那么它 okk .. 但 id 和 class 非常重要

我想要的实际上是我的选择框是这个

<label for="validation-select" class="label">Select</label>
<select id="validation-select" name="validation-select" class="select validate[required]">

或者如果我想在其中添加时区,我不知道该怎么做

辅助类

http://bakery.cakephp.org/articles/MarkAlanEvans/2009/12/17/updated-timezone-helper

最佳答案

$month = array('1' => 'January', '2' => 'February', '3' => 'March', '4' => 'April', '5' => 'May', '6' => 'June', '7' => 'July', '8' => 'August', '9' => 'September', '10' => 'October', '11' => 'November', '12' => 'December');


echo $this->Form->select('month', $month, array('class' => 'form-control month', 'placeholder' => 'Month', 'id' => 'month', 'empty' => 'Select Month'));

关于cakephp - 如何在 Cakephp 中添加 id 和 class 来选择框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17365063/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com