例如,我在页面的左侧有4个列表项(左侧导航),而在工作区中我们有4个表单。
当我们点击每个列表项时,它只显示一个表单。
当填写所有相应的表单字段(如完整状态)时,我需要为每个列表项添加一个刻度标记(使用Jquery / JavaScript)。
请使用任何jquery / javascript插件帮助我在这种情况下。
答案 0 :(得分:0)
You can add check-box in list and using jQuery. you can check form is completely filled by this function:
function validateForm() {
var isValid = true;
$('.form-field').each(function() {
if ( $(this).val() === '' )
isValid = false;
});
return isValid;
}
and when function returns true then check the corresponded check-box
$('#checkboxId').prop('checked', true);
you can add a anchor(a) tag as well as add class(having image of tick) when above function return true
I hope this would be help full.