jquery에서 html의 테이블을 접근하려면 다음과 같이 진행한다.
$('#Table1 > tbody')
테이블 내용을 로그 화면에 출력하려면 다음과 같다.
$('#atable > tbody > tr[id]').each(function( index ) {
console.log(index + ": " + $(this.id));
});
참조 싸이트
https://api.jquery.com/has-attribute-selector/
'web' 카테고리의 다른 글
[html] 테이블의 컬럼 안보이게 하기 (0) | 2017.06.02 |
---|---|
[jwplayer] jwplayer 사용 예제 (0) | 2017.06.01 |
[javascript] sleep 기능 (0) | 2017.05.31 |
[jquery] html 컴포넌트 접근 및 json 객체 생성하기 (0) | 2017.05.31 |
[javascript] jquery로 file upload 하는 예제 (0) | 2017.05.29 |