gpt4 book ai didi

javascript - 使用 jQuery 将复选框添加到无序列表

转载 作者:太空宇宙 更新时间:2023-11-04 14:49:06 26 4
gpt4 key购买 nike

将复选框添加到每个 <li> 的 jQuery 代码是什么?无序列表中的元素并处理它们的回调以获取 li 文本或复选框属性(如名称/值)?

我从这样的事情开始:

$(document).ready(function() {
$("#SuperTextbox1_Results").children('li').each(function() {
$(this).prepend('<input type="checkbox" name="test" value="test" />');
});
});

最佳答案

// checkbox click event handler
$('input:checkbox.liChk').live('click', function () {
// access parent li, do whatever you want with it
console.log($(this).parent('li'));
});

// append checkboxes to all li tags
$('<input type="checkbox" class="liChk" />').appendTo('li');

关于javascript - 使用 jQuery 将复选框添加到无序列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1293437/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com