.NET프로그래밍/JavaScript 1.2
24. 도큐먼트객체
holland14
2009. 8. 10. 17:17
<script>
document.title = "타이틀바에 문자열 출력"
document.write("문서에 출력");
document.bgColor = "Yellow";
document.fgColor = "Blue";
window.status = "상태바에 출력";
</script>
document.title = "타이틀바에 문자열 출력"
document.write("문서에 출력");
document.bgColor = "Yellow";
document.fgColor = "Blue";
window.status = "상태바에 출력";
</script>