rond
在选择列表中选择
edit_type
edit_maat_2
readonly
但什么都没发生。
这是我的密码:
<select class="form-control" id="edit_type['.$i.']" name="edit_type" onclick="show_dim(this, '.$i.')">
<option ';if($row_table_1['type'] == 'rond') { echo 'selected="selected"';} echo 'value="as">Staf rond</option>
<option ';if($row_table_1['type'] == 'buis') { echo 'selected="selected"';} echo 'value="buis">Buis</option>
</select>
<input type="number" class="form-control" id="edit_maat_2['.$i.']" name="edit_maat_2" value="'.$row_table_1['maat_2'].'">
<script type="text/javascript">
function show_dim(selectVeld, nr)
{
if(document.getElementById('edit_type['+nr+']').value == 'rond') {
document.getElementById('edit_maat_2['+nr+']').attr('readonly','readonly'); }
}
</script>
$i
当我检查这是控制台模式时,我看到以下错误:
Uncaught ReferenceError: e is not defined
e
有什么建议吗?