当前位置: 编程技术>WEB前端
Jquery动态添加及删除页面节点元素示例代码
来源: 互联网 发布时间:2014-08-25
本文导语: 通常我们会遇到选中某个条件,然后添加,累计多个后,再进行执行。 废话不多说,直接上代码! 代码如下: Jquery动态添加及删除页面节点 .container{ width:1000px; margin:0 auto;} .top{ height:25px; line-height:25px;} .top select{ width:80px; ...
通常我们会遇到选中某个条件,然后添加,累计多个后,再进行执行。
废话不多说,直接上代码!
Jquery动态添加及删除页面节点
.container{ width:1000px; margin:0 auto;}
.top{ height:25px; line-height:25px;}
.top select{ width:80px; height:22px; line-height:22px;}
.top input{ width:56px; height:22px;}
.add{ line-height:30px;}
li{ list-style:none;}
span{cursor:pointer;}
$(function(){//页面加载完毕后执行
$("input").click(function(){//添加操作
var getval=$("select").val();//获取当前选中的select值
$("p").before(''+getval+'X ');//在p标签前加入所要生成的代码
});
});
$("span").live("click",function(){//通过 live() 方法附加的事件处理程序适用于匹配选择器的当前及未来的元素(比如由脚本创建的新元素)
$(this).parent().remove();//移除当前点击元素的父元素
});
我是一号
我是二号
我是三号
我是四号
我是五号
废话不多说,直接上代码!
代码如下:
Jquery动态添加及删除页面节点
.container{ width:1000px; margin:0 auto;}
.top{ height:25px; line-height:25px;}
.top select{ width:80px; height:22px; line-height:22px;}
.top input{ width:56px; height:22px;}
.add{ line-height:30px;}
li{ list-style:none;}
span{cursor:pointer;}
$(function(){//页面加载完毕后执行
$("input").click(function(){//添加操作
var getval=$("select").val();//获取当前选中的select值
$("p").before('
});
});
$("span").live("click",function(){//通过 live() 方法附加的事件处理程序适用于匹配选择器的当前及未来的元素(比如由脚本创建的新元素)
$(this).parent().remove();//移除当前点击元素的父元素
});
我是一号
我是二号
我是三号
我是四号
我是五号