87,994
社区成员
发帖
与我相关
我的任务
分享
function Check() {
if ($("input[name='sex'][checked]").length != 1) {
Retutn();
return;
}
if ($("input[name='ping'][checked]").length != 1) {
if ($("#txtname").val() == "") {
Retutn();
return;
}
}
if ($("input[name^='fen'][checked]").length == 0) {
if ($("#txtfen").val() == "") {
Retutn();
return;
}
}
if ($("input[name^='seo'][checked]").length == 0) {
if ($("#txturl").val() == "") {
Retutn();
return;
}
}
}
function Retutn() {
alert("还有漏选项");
}