묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
document.write 에 대하여........
2002.05.06 19:36
자바스크립트에서 보통..........
document.write('태그');
이렇게 하면....... 태그가 출력되는데..........
document.write('<td width="210" valign=top background="left_bg.gif">');
이렇게 배경그림이 안 통하는군요.....
다른거는 되는데, 왜 배경태그는 먹히질 않는 것일까요?
해결책이 없는건지?
알려주시면 감사드리겠습니다 ^^
document.write('태그');
이렇게 하면....... 태그가 출력되는데..........
document.write('<td width="210" valign=top background="left_bg.gif">');
이렇게 배경그림이 안 통하는군요.....
다른거는 되는데, 왜 배경태그는 먹히질 않는 것일까요?
해결책이 없는건지?
알려주시면 감사드리겠습니다 ^^
TABLE 태그를 아래 위에 써주셔야지요..
그리구 TD에 Height값이 없고 내용이 없으면 선으로 표시되기 때문에 보이지 않습니다.
<table>
<tr>
<SCRIPT LANGUAGE="JavaScript">
<!--
document.write('<td width="210" height="100" valign=top background="left_bg.gif">');
//-->
</SCRIPT>
</tr>
</table>
이렇게 하셔야 겠지요.