layui中使用jquery控制radio選中事件的示例代碼
來源:懂視網(wǎng)
責(zé)編:小采
時(shí)間:2020-11-27 22:09:55
layui中使用jquery控制radio選中事件的示例代碼
layui中使用jquery控制radio選中事件的示例代碼:勾選 form.on('radio(yesHave)', function (data) { $(input[name='hasPrepaidVoucher'][title='有']).attr('checked',true); form.render(); }); 取消勾選 form.on('radio(noIssuer)', function
導(dǎo)讀layui中使用jquery控制radio選中事件的示例代碼:勾選 form.on('radio(yesHave)', function (data) { $(input[name='hasPrepaidVoucher'][title='有']).attr('checked',true); form.render(); }); 取消勾選 form.on('radio(noIssuer)', function

勾選
form.on('radio(yesHave)', function (data) {
$("input[name='hasPrepaidVoucher'][title='有']").attr('checked',true);
form.render();
});
取消勾選
form.on('radio(noIssuer)', function (data) {
debugger;
$("input[name='voucherIssuer']").removeAttr('checked');
form.render();
});
以上這篇layui中使用jquery控制radio選中事件的示例代碼就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
layui中使用jquery控制radio選中事件的示例代碼
layui中使用jquery控制radio選中事件的示例代碼:勾選 form.on('radio(yesHave)', function (data) { $(input[name='hasPrepaidVoucher'][title='有']).attr('checked',true); form.render(); }); 取消勾選 form.on('radio(noIssuer)', function