下面我就為大家分享一篇jQuery動態加入li標籤並加入屬性和綁定事件方法,具有很好的參考價值,希望對大家有幫助。
程式碼如下:
<%@page import="java.util.ArrayList"%> <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <script type="text/javascript" src="http://www.daimajiayuan.com/download/jquery/jquery-1.10.2.min.js"></script> <!-- 3.0 --> <link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="external nofollow" rel="stylesheet"> <script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> </head> <body> <ul id="listproject" class="list-group"> <script type="text/javascript"> var JSarray = new Array(); JSarray[0] = "array0"; JSarray[1] = "array1"; JSarray[2] = "array2"; JSarray[3] = "array3"; JSarray[4] = "array4"; for(var i = 0;i<5;i++){ $("#listproject").append("<li id=li"+i+">"+JSarray[i]+"</li>"); //在ul标签上动态添加li标签 $("#li"+i).attr("class",'list-group-item'); //为li标签添加class属性 } $('li').on('click',function(){ //绑定事件 alert("事件绑定成功!"); }); </script> </body> </html>
執行結果:
上面是我整理給大家的,希望今後對大家有幫助。
相關文章:
##
以上是在jQuery中如何實作動態新增li標籤並新增屬性和綁定事件方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!