0
我是jQuery和html中的新成員。我試圖從複選框列表中獲取所有選中的值,但是我的腳本返回所有值而不是檢查。Jquery只從複選框列表中獲取所有選中的值
繼我的html:
<input type="button" value="Show selected" onclick="return false" class="showSelectedOnly">
<table>
<tr>
<td>
<input type="checkbox" class="order_row" data-order-id="20161004-135848" name="sel20161004-135848" ></td>
</tr>
<tr>
<td>
<input type="checkbox" class="order_row" data-order-id="20161004-135848" name="sel20161004-135848" ></td>
</tr>
<tr>
<td>
<input type="checkbox" class="order_row" data-order-id="20161004-135848" name="sel20161004-135848" ></td>
</tr>
</table>
我的JS腳本:
$(".showSelectedOnly").click(function(){
$('.order_row:checkbox:checked').each(function() {
var sThisVal = $(this).attr("data-order-id");
alert(sThisVal);
});
});
請讓我知道爲什麼我的腳本不能只返回檢查的值。
做工精細兄弟 – Mahi
您代碼應工作 – Satpal
@Satpal是的工作我檢查編輯 – Mahi