1、判断checkbox是否为选中状态:
if($("#searchNews").attr("checked")=="checked") { ... }
2、设置checkbox为选中状态
$("#searchNews").attr("checked","true");