jQuery의 $obj.data() 메서드 사용 예시

By | 8월 14, 2012

$('#reqTable').data('A', '111'); //데이터 셋팅
$('#reqTable').data('B', '222');
$('#reqTable').data('C', '333');

$('#reqTable').removeData('A');  //특정 데이터 삭제
        $('#reqTable').data('B')); //특정 데이터 리턴
        $('#reqTable').removeData(); //전체 데이터 삭제   
$('#reqTable').data()); //전체 데이터 리턴

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments