如果单击表格中的任何复选框,我会设置所有复选框。现在,我需要在选中复选框时将所有文本字段设置为必需,并且在未选中所有复选框时删除。
使用此代码,我会检查所有复选框。如何在文本字段字段上切换所需?
var output = 35 - 29.99;
console.log(output); // 5.010000000000002
console.log(output.toFixed(2)); // 5.01
答案 0 :(得分:1)
只需在代码中插入即可。
$("input:text").prop('required',true);
示例:
$('.checkAll').click(function (e) {
$(this).closest('table').find(':checkbox').prop('checked', this.checked);
$("input:text").prop('required', true);
})
或者您可以将"input:text"
替换为每个文本字段中需要的类
希望这有帮助!