jQuery | javascript | CSS
24.JavaScript - document 객체 (도큐먼트 객체)
Godffs
2009. 8. 11. 01:28
반응형
document는 문서에서 보여지는 것을 말합니다.
<script>document.title = "타이틀바에 문자열 출력";
document.write("문서에 출력");
document.bgColor = "Yellow";
document.fgColor = "Blue";
window.status = "상태바에 출력";
</script>
반응형