摘要:
Create table B([id] int,[name] nvarchar(1))Insert Bselect 1,N'a' union allselect 1,N'b' union allselect 2,N'c' union allselect 2,N'd' union allselect 阅读全文
摘要:
直接jquery代码: var checked=$("input[name='checked']:checked");//获取复选框被选中状态 if(!(checked&&checked.length>0)){//判断复选框是否被选中 alert("请选择一项"); return false; } 阅读全文