如標題
checkbox
1.確認checkbox is checked.
$('#' + id).is(":checked")
https://stackoverflow.com/questions/2204250/check-if-checkbox-is-checked-with-jquery
2.確認 checked box 有幾個勾選
var atLeastOneIsChecked = $('#checkArray:checkbox:checked').length > 0;
var atLeastOneIsChecked = $('input[name="chk[]"]:checked').length > 0;
select
1.取得目前選擇的值
$('#state').val();
2.取得全部清單的值
window.open 的時候
window popup 取得parent 的 id
var abc = $("[name=abc]", window.opener.document);
一種過濾html td 資料的方式
https://www.w3schools.com/bootstrap/bootstrap_filters.asp
以上文章僅用紀錄資料使用.....