在选中复选框时,如何在复选框旁边添加新的DIV标签,并且在选中了两个复选框时,必须显示两个DIV标签。请帮助并让我使用 jquery 解决这个模块
问问题
4395 次
1 回答
3
$(':checkbox').click(function () {
if ($(this).attr('checked')) {
// create new div
var newDiv = $('<div>contents</div>');
// you can insert element like this:
newDiv.insertAfter($(this));
// or like that (choose syntax that you prefer):
$(this).after(newDiv);
} else {
// this will remove div next to current element if it's present
$(this).next().filter('div').remove();
}
});
如果您不想在复选框标签旁边添加这个新 div,那么首先确保您为复选框设置了 id,并使用标签中的属性将标签与复选框连接起来:
<label for="myCb1">test</label>
<input type="checkbox" id="myCb1" value="1" />
现在你可以稍微修改一下上面的 JS 代码,你就完成了:
$(':checkbox').click(function () {
// current checkbox id
var id = $(this).attr('id');
// checkbox' label
var label = $('label[for=' + id + ']');
if ($(this).attr('checked')) {
// create new div
var newDiv = $('<div>contents</div>');
// insert div element
newDiv.insertAfter(label);
} else {
// this will remove div next to current element if it's present
label.next().filter('div').remove();
}
});
于 2009-07-30T05:34:35.227 回答