我想在保存时验证联系人类型值何时具有真正的主要,以便只有一个联系人类型值是主要的,
我如何使用 jquery 或 Javascript 处理它 :(
谢谢
var row = obj.closest("tr").find("input[name=workerId]").val();
var contactValue = obj.closest("tr").find("input[name=contactValue]").val();
var contactType = obj.closest("tr").find("input[name=contactType]").val();
var isPrimary = obj.closest("tr").find("input[name=isPrimary]").val();
// get the value of the checkbox in edit modal window
if (isPrimary === 'true') {
$('#chkEditWorkerIsPrimary').attr('checked', 'checked');
} else {
$('#chkEditWorkerIsPrimary').removeAttr('checked');
}