我有一个从 php 文件创建的表单和一个具有只读属性的文本字段,单击编辑按钮(在创建输入字段期间也创建了编辑按钮),我希望所述字段是可编辑的,如何我可以这样做吗?
<td text align="center">
<input type="text" id=SOME_AMOUNT<?= $j; ?> value=<?=" " .$arr[$j]['BILL_AMOUNT'] . " "; ?> readOnly>
<button type="button" id=EDIT_AMOUNT<?php echo "$j"; ?> class="EDIT_AMOUNT btn btn-mini btn-primary"> Edit Bill</button>
$(document).ready(funcion(){
$(".EDIT_AMOUNT").click(function(){
var id=$(this).attr('id');
var index=id.match(/\d+$/)[0]; // to get the id numerals from the id string
$("#SOME_AMOUNT"+index).attr("readOnly", false);
});
});
编辑:问题似乎出在用于表格对齐的 javascript 中,它包含在 php 文件中。这怎么可能?