본문 바로가기

Study/Javascript

[JQuery] html 문서에서 다른 html 문서 import

<script>
    $(function(){
        $("#includedContent").load("includedContent.html");
    });
</script>


<div id="includedContent"></div>


이런 식...