点击按钮后删除某个元素可用如下jQuery代码实现
$("input:button").click(function() {
$(selector).remove(); // $(selector)通过选择器表示要删除的元素,remove()函数用以删除元素
});
实例演示:点击按钮后删除复选框勾选的元素
创建Html元素
勾选元素后,点击按钮删除
萝卜
青菜
小葱
豆腐
土豆
茄子
设置css样式
div.box{width:300px;height:200px;padding:10px 20px;border:4px dashed #ccc;}
div.content{width:250px;height:80px;margin:10px 0;}
input{margin:10px;}
input[type='button']{width:200px;height:35px;margin:10px;border:2px solid #ebbcbe;}
编写jquery代码
$(function(){
$("input:button").click(function() {
$("input:checkbox:checked").each(function() {
$(this).next("span").remove();
$(this).remove();
});
});
})
观察效果
选择待删除的项目
点击按钮删除后结果
$('#button').click(function(){
$('#element').remove();
});