您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“l(fā)ayui表格checkbox選擇全選樣式的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“l(fā)ayui表格checkbox選擇全選樣式的示例分析”這篇文章吧。
1、layui版本號為 v1.0.9 rls版本(當(dāng)前最新版本)
<span > </span><div class="layui-form"> <table class="layui-table"> <thead> <tr> <th><input type="checkbox" name="" lay-skin="primary" lay-filter="allChoose"></th> <th>人物</th> <th>民族</th> <th>出場時間</th> <th>格言</th> </tr> </thead> <tbody> <tr> <td><input type="checkbox" name="" lay-skin="primary"></td> <td>賢心</td> <td>漢族</td> <td>1989-10-14</td> <td>人生似修行</td> </tr> <tr> <td><input type="checkbox" name="" lay-skin="primary"></td> <td>張愛玲</td> <td>漢族</td> <td>1920-09-30</td> <td>于千萬人之中遇見你所遇見的人,于千萬年之中,時間的無涯的荒野里…</td> </tr> </tbody> </table> </div> <script type="text/javascript" src="plugins/layui/lay/dest/layui.all.js"></script> <script type="text/javascript"> var $ = layui.jquery, form = layui.form(); //全選 form.on('checkbox(allChoose)', function(data){ var child = $(data.elem).parents('table').find('tbody input[type="checkbox"]'); child.each(function(index, item){ item.checked = data.elem.checked; }); form.render('checkbox'); }); </script>
2、版本號為v1.0.9 rls之前的版本需要更新幾個文件
(a)layui\lay\dest 里的 layui.all.js文件
(b)layui\lay\modules里的 form.js 文件
(c)layui\css 里的 layui.css 文件
將以上三個文件從最新版本中覆蓋到原來的版本,即可輕易實(shí)現(xiàn)checkbox的樣式。
以上是“l(fā)ayui表格checkbox選擇全選樣式的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。