<input class="filtered a_name" id="attribute_value_1560" type="checkbox" name="attribute_value[156][]" at_v_i="156_A+++/A++" value="A+++/A++">
<table>
<?php foreach($attribute_value['values'] as $i => $value) { ?>
<tr>
<td>
<input class="filtered a_name"
id="attribute_value_<?php echo $attribute_value_id . $i; ?>"
type="checkbox" name="attribute_value[<?php echo $attribute_value_id?>][]"
at_v_i="<?php echo $attribute_value_id . '_' . $value; ?>"
value="<?php echo $value ?>">
</td>
<td>
<label for="attribute_value_<?php echo $attribute_value_id . $i; ?>"
at_v_t="<?php echo $attribute_value_id . '_' . htmlspecialchars(preg_replace('/\s+|\n|\r|\s+$/m', '_', $value)); ?>"
data-value="<?php echo $value; ?>"
value="<?php echo $value ?>"><?php echo $value?></label>
</td>
</tr>
<?php } ?>
</table>
我收到了这个错误:
此时元素输入上不允许属性at_v_i。
我该如何解决这个问题?