jquery怎么给append追加有序列表

2024-11-28 11:05:38
推荐回答(1个)
回答1:





插入在第一位  

.content{ padding:0; margin:0;}
.content ul li{  list-style:none; width:100px; height:30px; text-align:center; background:#063; color:#fff; margin-bottom:3px; line-height:30px;}



$(document).ready(function(e) {
      //append是直接插睁亏歼入在内容的最后面,不能换位置,如果一定要append做有序在最后,只能先用数据html+="
  • 插入在第一位
  • ",先连接上,最后在空告一次append加入(深圳网站建设www.sz886.com)
     $("#btn_first").click(function(){
       //before插入到选择到的元素之前
       $(".content ul li:first").before("
  • 插入在第一位
  • ");  
     
     });
      $("#btn_two").click(function(){
     //before插入到选择到的元素之后
       $(".content ul li:first").after("
  • 插入在第二位
  • ");  
     
     });
    });


     
       
           
              

               悉冲    
    • 原来的位置

    •