<p id="example">This is an example.</p>
<script>
document.getElementById('example').style.borderWidth = '4px';
</script>
'Javascript' 카테고리의 다른 글
자바스크립트 페이지 이동 (0) | 2012.06.14 |
---|
<p id="example">This is an example.</p>
<script>
document.getElementById('example').style.borderWidth = '4px';
</script>
자바스크립트 페이지 이동 (0) | 2012.06.14 |
---|
<script type="text/javascript">
1. location.href='이동주소';
2. location.replace("이동주소");
</script>
3. 메타태그를 이용하는 방법
<meta http-equiv='refresh' content='시간지정; url=이동주소'>
4. 현재 페이지가 프레임에 있다면 프레임에서 벗어나고 이동
<script type="text/javascript">
parent.location.replace("이동주소");
</script>
자바스크립트로 스타일시트 바꾸기 (0) | 2012.06.14 |
---|