이 기사의 예에서는 jQuery를 사용하여 html 요소를 동적으로 생성하는 일반적인 방법을 설명합니다. 이는 웹 프로그래밍에 jQuery를 사용할 때 매우 유용합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 방법은 다음과 같습니다.
일반적으로 html 요소는 다음과 같은 방법으로 동적으로 생성될 수 있습니다.
1. jQuery를 사용하여 요소를 생성하는 구문
2. 동적 콘텐츠를 배열에 저장한 다음 배열을 순회하여 HTML 요소를 동적으로 생성합니다.
3. 템플릿 사용
1. jQuery를 사용하여 요소를 동적으로 생성하고 이를 jQuery 개체에 추가합니다.
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <script src="Scripts/jquery-1.10.2.js"></script> <script type="text/javascript"> $(function() { $('<input />', { id: 'cbx', name: 'cbx', type: 'checkbox', checked: 'checked', click: function() { alert("点我了~~"); } }).appendTo($('#wrap')); }); </script> </head> <body> <div id="wrap"></div> </body>
작동 효과는 아래와 같습니다.
2. 먼저 콘텐츠를 배열에 넣은 다음 배열을 순회하여 html로 연결합니다
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <script src="Scripts/jquery-1.10.2.js"></script> <style type="text/css"> table { border: solid 1px red; border-collapse: collapse; } td { border: solid 1px red; } </style> <script type="text/javascript"> $(function () { var data = ["a", "b", "c", "d"]; var html = ''; for (var i = 0; i < data.length; i ++) { html += "<td>" + data[i] + "</td>"; } $("#row").append(html); }); </script> </head> <body> <table> <tr id="row"></tr> </table> </body> </html>
작동 효과는 아래와 같습니다.
3. 템플릿을 사용하여 HTML 생성
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <script src="Scripts/jquery-1.10.2.js"></script> <script type="text/javascript"> $(function () { var a = buildHTML("a", "我是由模版生成的", { id: "myLink", href: "http://www.baidu.com" }); $('#wrap1').append(a); var input = buildHTML("input", { id: "myInput", type: "text", value: "我也是由模版生成的~~" }); $('#wrap2').append(input); }); buildHTML = function(tag, html, attrs) { // you can skip html param if (typeof (html) != 'string') { attrs = html; html = null; } var h = '<' + tag; for (attr in attrs) { if (attrs[attr] === false) continue; h += ' ' + attr + '="' + attrs[attr] + '"'; } return h += html ? ">" + html + "</" + tag + ">" : "/>"; }; </script> </head> <body> <div id="wrap1"></div> <div id="wrap2"></div> </body>
작동 효과는 아래와 같습니다.
이 기사에서 설명하는 내용은 모든 사람이 웹 프로그래밍에 jQuery를 사용하는 데 특정 참조 가치가 있다고 믿습니다.