display 속성 변경시에 colspan 속성이 사라짐
Posted: 2009 10 19 17:23 01
<html>
<head>
<script type="text/javascript" language="javascript">
<!--
function toggle ( id )
{
var obj = document.getElementById ( id );
if ( obj.style.display != "block" )
obj.style.display = "block";
else
obj.style.display = "none";
}
//-->
</script>
</head>
<body>
<table border="1" style="width:200px">
<col style="width:20px"/>
<col/>
<tr>
<td style="width:20px"> </td>
<td onclick="toggle('tt')">Show/Hide</td>
</tr>
<tr>
<td id="tt" colspan="2">
ㅎㅎ몬ㅇ리ㅏㅁㄴ와롬ㄴ이ㅏㅗㄹ민옮ㄴ오라ㅣㅣ몬ㅇㄹ마ㅣㅗㅇ
ㄴ오림ㄴ오리몬ㅇ롬ㄴ이ㅏ뢰만오라몬이ㅏㅗㄻㄴ어룀ㄴ오림ㄴ오리
</td>
</tr>
</table>
</body>
</html>
<head>
<script type="text/javascript" language="javascript">
<!--
function toggle ( id )
{
var obj = document.getElementById ( id );
if ( obj.style.display != "block" )
obj.style.display = "block";
else
obj.style.display = "none";
}
//-->
</script>
</head>
<body>
<table border="1" style="width:200px">
<col style="width:20px"/>
<col/>
<tr>
<td style="width:20px"> </td>
<td onclick="toggle('tt')">Show/Hide</td>
</tr>
<tr>
<td id="tt" colspan="2">
ㅎㅎ몬ㅇ리ㅏㅁㄴ와롬ㄴ이ㅏㅗㄹ민옮ㄴ오라ㅣㅣ몬ㅇㄹ마ㅣㅗㅇ
ㄴ오림ㄴ오리몬ㅇ롬ㄴ이ㅏ뢰만오라몬이ㅏㅗㄻㄴ어룀ㄴ오림ㄴ오리
</td>
</tr>
</table>
</body>
</html>