使用JQuery實現ul中新增LI和刪除指定的Li元素
阿新 • • 發佈:2018-12-11
最近為了實現這個簡單的功能也是看了很多的內容,終於找出了看起來簡單易實現的方法,我覺得能用最簡潔的程式碼實現,就不要寫的那麼複雜,看也看不懂。先碼著,為後面的專案做做準備。
<!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta name="keywords" content="心若向陽"> <title>心若向陽無謂悲傷</title> <style type="text/css"> .item{ background: #C0C0C0; border-radius: 20px; margin-bottom: 10px; height:40px; padding-left: 20px; color:white; font-family: "微軟雅黑"; text-align: center; padding-top: 15px; } #content{ list-style: none; } </style> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript"> $ (function () { $ ('#add').click (function () { if($("#content").children().length >=5){ alert("最多允許新增5個") return; } $('#content').append('<li class="item" >'+$("#content").children().length+'</li>'); }); $ ('#delete').click (function () { var len = $("#content").children().length-1; if(len >=0){ $("ul li:eq("+len+")").remove(); //表示刪除最後一個元素 }else{ alert("還沒有新增元素哦"); } }); }) </script> </head> <body> <div > <ul id="content"> </ul> </div> <button id="add">新增div</button> <button id="delete">刪除div</button> </body> </html>
實現效果如下: