我有我的 html 标记是这样的
<table id="sales-product-details">
<tbody id="tableToModify">
<tr>
<td>
<select id="prd_dtype1" class="discount-type" name="prddtype[]">
<option value="">none</option>
<option value="1">discount type 1</option>
<option value="2">discount type 2</option>
<option value="3">discount type 3</option>
</select>
</td>
<td>
<input type="text" class="dicount-price" onkeyup="calprice2(this.value,'1');" id="prd_damount1" name="prddamount[]">
</td>
</tr>
</tbody>
</table>
现在我想在 jQuery 中,当我从折扣类型的下拉列表中选择无时,折扣价格的输入文本字段将是只读的,当我选择除无以外的任何值时,折扣价格的输入文本字段将变成输入区(非只读)。任何帮助和建议都将是非常可观的。谢谢..