0
如果列表只包含單個元素,我可以更改SELECT元素的樣式?Html下拉菜單。不同的風格列表,如果只有單個元素
我:
<select class="attribute_select">
<option selected="selected">001</option>
<option>002</option>
</select>
我需要:
<select class="attribute_select_single">
<option selected="selected">001</option>
</select>
更新
<select name="{$groupName}" id="group_{$id_attribute_group|intval}" class="attribute_select" onchange="findCombination();getProductAttribute();">
{foreach from=$group.attributes key=id_attribute item=group_attribute}
<option value="{$id_attribute|intval}"{if (isset($smarty.get.$groupName) && $smarty.get.$groupName|intval == $id_attribute) || $group.default == $id_attribute} selected="selected"{/if} title="{$group_attribute|escape:'htmlall':'UTF-8'}">
{$group_attribute|escape:'htmlall':'UTF-8'}</option>
{/foreach}
</select>
出了什麼問題,你現在有什麼? – JJJ
我如何檢查單個元素?我的例子是結果html。我的清單在PHP中創建。 – antohabio
您需要顯示創建下拉菜單的PHP代碼。 – JJJ