<script>
    function GoNaver() {
        location.href = "http://www.naver.com/";
    }

</script>

<input type="button" value="닷넷코리아로 이동" onclick="location.href='http://dotnetkorea.com/';" />

<table border="1" onmouseover="GoNaver();">
    <tr>
        <td>마우스를 올려보세요...</td>
    </tr>
</table>

<a href="#" onclick="location.reload();">현재 페이지 새로고침</a>
<a href="javascript:location.reload();">현재 페이지 새로고침</a>

Posted by holland14
: