Study/Javascript
[JQuery] html 문서에서 다른 html 문서 import
yongphu
2014. 5. 20. 15:50
<script>
$(function(){
$("#includedContent").load("includedContent.html");
});
</script>
<div id="includedContent"></div>
이런 식...