a 태그 페이지 이동(onclick)

<ul>
    <li><a href="javascript:void(0);" onclick="fn_cntcMthd();">수집유형</a></li>
    <li><a href="javascript:void(0);" onclick="fn_system();">시스템</a></li>
    <li><a href="javascript:void(0);" onclick="fn_table();" class="active">테이블</a></li>
</ul>

<script type="text/javascript">
    // 수집 유형 버튼
    function fn_cntcMthd() {
		location.href = "/batchResult/cntcMthd";
    }

    // 시스템 버튼
    function fn_system() {
        location.href = "/batchResult/system";
    }

    // 테이블 버튼
    function fn_table() {
        location.href = "/batchResult/table";
    }
</script>

Leave a comment