$("input:not(:checked) + p"),这个+是什么意思?
具有checked属性的input 节点相邻的兄弟节点 ,好比<p>+代表我和下面那个</p><input checked="checked"> <p>+代表上面那个和我</p>