js中怎么判断checkbox是否选中

2024-11-25 04:42:43
推荐回答(1个)
回答1:

js判断checkbox是否选中
var $id = document.getElementById("id");
alert($id.checked);