HTML5 Custom Data Attributes (data-*)
HTML 태그 안에서 사용자 데이타 저장하기 태그 속성과 스크립트의 잘못된 사용의 예 속성의 잘못된 사용 for(var i = 0; i < $("img").length; i++) { $(".pic-" + i).doStuff(); // Do something } 스크립트의 잘못된 사용 This is the actual text This is the tooltip $("p span").hide(); $("p").hover(function() { $("span", this).show(); }); JavaScript 의 해결책 the .data() API 를 사용하는 DOM 구조를 사용한다. var i = 0; $("img").each(function(){ $(this).data("iterator", i); /..
프로그래밍/WEB
2011. 5. 16. 10:07