jQuery_jquery를 사용하여 html 요소를 동적으로 생성하는 일반적인 방법 요약

WBOY
풀어 주다: 2016-05-16 16:37:08
원래의
1182명이 탐색했습니다.

이 기사의 예에서는 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 &#63; ">" + html + "</" + tag + ">" : "/>";
     };
   </script>
 </head>
 <body>
   <div id="wrap1"></div>
   <div id="wrap2"></div>
 </body>

로그인 후 복사

작동 효과는 아래와 같습니다.

이 기사에서 설명하는 내용은 모든 사람이 웹 프로그래밍에 jQuery를 사용하는 데 특정 참조 가치가 있다고 믿습니다.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿