layui에서 테이블의 특정 행 값을 가져오는 방법: 먼저 해당 코드 파일을 연 다음 "table.checkStatus('ID')" 메서드를 사용하여 테이블의 특정 행 값을 가져옵니다.
이 튜토리얼의 운영 환경: Windows 7 시스템,layui 버전 2.4, Dell G3 컴퓨터.
추천: "javascript basic tutorial" "layUI tutorial"
layui에서는 table.checkStatus('ID') 메소드를 사용하여 테이블의 특정 행 값을 가져올 수 있습니다. 여기서 ID는 다음과 같습니다. 기본 매개변수.
【자동 렌더링】
<table class="layui-table" lay-data="{id: 'idTest'}"> …… </table>
【메서드 렌더링】
table.render({ //其它参数省略 id: 'idTest' });
전화:
var checkStatus = table.checkStatus('idTest'); //idTest 即为基础参数 id 对应的值 console.log(checkStatus.data) //获取选中行的数据 console.log(checkStatus.data.length) //获取选中行数量,可作为是否有选中行的条件 console.log(checkStatus.isAll ) //表格是否全选
위 내용은 Layui에서 테이블의 특정 행 값을 얻는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!