【发布时间】:2014-05-12 22:33:11
【问题描述】:
我在哪里可以在结帐页面上的国家/地区的 html select 标记?
<div class="field form-group">
<label for="billing:country_id" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
<div class="input-box">
<?php echo $this->getCountryHtmlSelect('billing') ?>
</div>
</div>
有了这个$this->getCountryHtmlSelect('billing'),它返回下面的html select标签,
<select name="billing[country_id]" id="billing:country_id" class="validate-select" title="Country" >
<option value="" > </option>
<option value="AF" >Afghanistan</option><option value="AL" >Albania</option>
<option value="DZ" >Algeria</option>
...
但我需要在select 标签中添加一个类名,
class="form-control validate-select"
但是我在哪里可以找到这个select 标签?
【问题讨论】:
标签: magento magento-1.8