我正在寫一個laravel應用程序,其中我有一個禁用輸入字段與edit
每個按鈕表。我想單擊編輯按鈕以啓用單擊該按鈕的輸入字段。動態表與輸入字段jquery點擊編輯按鈕,啓用字段
這是我view.blade.php
@foreach($products as $product)
<tbody>
<tr>
<td class="col-md-2">
<input type="text" name="quantity" id="1" class="form-control"
value="{{ $product->quantity }}" disabled="" />
</td>
<td class="col-md-7">
<input type="text" name="quantity" id="1" class="form-control"
value="{{ $product->description }}" disabled="" />
</td>
<td class="col-md-3">
<input type="text" name="quantity" id="1" class="form-control"
value="{{ $product->selling_price }}" disabled="" />
</td>
<td class="col-md-2">
<button id="edit" type="button" class="btn btn-info">
Edit</button>
</td>
</tr>
</tbody>
@endforeach
這是我的jQuery腳本
$('#edit').click(function() {
$(this).parent().prop('disabled', false);
});
id應該對每個元素都是唯一的。請注意這一點。代替id使用類名$(this).parent(「tr」)。find('input')。prop('disabled',false); – JYoThI
這不起作用 – nana