<html>
<head>
<style type="text/css">
td { border : 2px solid green; }
</style>
<script>
window.onload=function(){
i=2;
buttonTag.onclick=function(){
i++;
var tt = document.createElement("td");
tt.innerHTML=i;
zz.appendChild(tt);
}
buttonTaga.onclick=function(){
i--;
zz.removeChild(zz.lastChild);
}
}
</script>
</head>
<body>
<input type="button" id="buttonTag" value="추가">
<input type="button" id="buttonTaga" value="삭제">
<table>
<tr id=zz><td>1</td><td>2</td></tr>
</table>
</body>
</html>
1 | 2 |
자바 초급 종합문제 (0) | 2014.12.04 |
---|---|
자바스크립트 마우스클릭시 새로운 테이블 생성, 삭제 (0) | 2014.12.04 |
자바스크립트 window.clearInterval , window.setInterval 을 이용한 글자 한개씩 뽑기 (0) | 2014.12.02 |
자바 버블정렬, 랜덤함수와 스캐너를 이용해 n개의 랜덤숫자를 재정렬 (0) | 2014.11.27 |
자바 랜덤함수를 이용한 숫자 맞추기 놀이 (0) | 2014.11.25 |