我为国家和州制定了自定义下拉列表。在这种情况下,选择框是在html标签中创建的。它工作正常,但onchange事件不起作用。
我已在结帐信息中使用此下拉列表进行单页结帐流程。
如果您对此有好的想法,请帮助我。
我使用过jQuery.selectbox。
代码显示在下面
<script type="text/javascript">
jQuery(window).load(function () {
jQuery('#billing\\:region_id').selectBox({
mobile: true
});
});
</script>
<select id="shipping:region_id" name="shipping[region_id]" title="<?php echo $this->__('State/Province') ?>" class="custom-class1 custom-class2 dist-std validate-select" style="display:none;">
<option value=""><?php echo $this->__('Please select region, state or province') ?></option>
</select>
谢谢。