输入
<input type='checkbox' id='checkbox_to_update' name='checkbox_to_update' value='1'>
想要将值传递给 jquery 变量
复选框被选中
试过了var checkbox_to_update = $("input[name='checkbox_to_update']");
带警报获取[object Object]
然后试了var checkbox_to_update = $("#id").attr("checkbox_to_update");
带警报获取undefined
`var checkbox_to_update =' 的正确代码是什么