这是代码: echo tep_draw_radio_field('payment',$ selection [$ i] ['id']);
我想把课放在tep_draw_radio_field
上因此输出将是:
< input type =“radio”name =“payment”value =“cod”class =“css-checkbox”>
答案 0 :(得分:2)
tep_draw_radio_field
函数接受允许您指定其他元素属性的其他参数。要使用您的示例添加类,您可以使用以下参数调用该函数:
echo tep_draw_radio_field('payment', $selection[$i]['id'], false, 'class="css-checkbox"');
注意:第二个参数是一个布尔值,指定是否选择了无线电。