0

我有这段代码,我正在尝试为这 2 个 select.option 中的每一个添加一个 id="" 或 class="" .... 有人可以帮帮我吗,我尝试了不同的方式和位置,但它只是不工作...

$status []=JHTML::_('select.option','1',JText::_('Yes'),'id','title');
$status []=JHTML::_('select.option','0',JText::_('No'),'id','title');

在现场这段代码看起来像

<label for="show_map1">Yes</label>
<label for="show_map0">No</label>

我想要实现的是:

<label for="show_map1" id="map_yes">Yes</label>
<label for="show_map0" id="map_no">No</label>

有人可以帮帮我吗?

谢谢

4

1 回答 1

0

尝试这个,

$manufacturers = array ('Nike','Adi');
$lists['manufacturers'] = JHTML::_('select.genericlist', $manufacturers, 'virtuemart_manufacturer_id', 'class="inputbox"', 'value', 'text', $product->virtuemart_manufacturer_id );



//$manufacturers is the options array
//virtuemart_manufacturer_id is the id and name of the filed
//'class="inputbox"' you can add additional class here
//$product->virtuemart_manufacturer_id is used for set default selection like Nike or Adi here.

echo $lists['manufacturers'];

希望它的帮助..

于 2013-09-17T04:17:28.583 回答