DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> Jquery動態添加及刪除頁面節點元素示例代碼
Jquery動態添加及刪除頁面節點元素示例代碼
編輯:JQuery特效代碼     
通常我們會遇到選中某個條件,然後添加,累計多個後,再進行執行。

廢話不多說,直接上代碼!
. 代碼如下:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Jquery動態添加及刪除頁面節點</title>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script><!--引用jqurey庫文件-->
<style>
.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;}
</style>
<script>
$(function(){//頁面加載完畢後執行
$("input").click(function(){//添加操作
var getval=$("select").val();//獲取當前選中的select值
$("p").before('<li>'+getval+'<span>X</span></li>');//在p標簽前加入所要生成的代碼
});
});
$("span").live("click",function(){//通過 live() 方法附加的事件處理程序適用於匹配選擇器的當前及未來的元素(比如由腳本創建的新元素)
$(this).parent().remove();//移除當前點擊元素的父元素
});
</script>
</head>

<body>
<div class="container">
<div class="top">
<select>
<option>我是一號</option>
<option>我是二號</option>
<option>我是三號</option>
<option>我是四號</option>
<option>我是五號</option>
</select>
<input value="添 加" type="button"/>
</div>
<div class="add"><p></p></div>
</div>
</body>
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved