PHP前端开发

layui多选框怎么获得

百变鹏仔 2个月前 (11-15) #layui
文章标签 多选
可以在 layui 中通过 getvalue() 方法或 elem.checked 属性获取多选框的值。getvalue() 方法返回一个数组,包含了所有选中的值。elem.checked 属性则返回一个元素数组,可通过遍历获取选中值。

如何在 layui 中获取多选框的值

layui 提供了两种获取多选框值的方法:

1. 使用 getValue() 方法

// 获取所有选中的值var values = layui.form.val('formId').checkbox;

values 为一个数组,包含了所有选中的值。

2. 使用 elem.checked 属性

// 获取所有选中的元素var elements = document.querySelectorAll('input[type="checkbox"]:checked');// 获取所有选中的值var values = [];elements.forEach(function(element) {  values.push(element.value);});

values 为一个数组,包含了所有选中的值。