我有一個div元素內的複選框。我想選中複選框作爲託運whenevever我按一下按鈕.. DIV元素標籤如下jquery選擇div元素內的複選框
<div class ="test123" style ="width:90px;">
<input id = "chk1" type = "checkbox" value="on"/>
</div>
我做這樣的事情,但它不是爲我工作
$(".test123 ").find("input:checked").each(function() {
//code to check the checkbox
});
請建議..
導航。
但這意味着,我需要點擊div,對不對?我想要的是,點擊按鈕,並在格子裏面的複選框.. – Gagan