input 창이 아닌 div나 span 으로 깔끔하게 넣고싶을때 사용하는 방법
<script type="text/javascript">
$(document).ready(function() {
$("#total_cost").text($("#total_cost_value").val());
});
$("#id").text(넣고싶은값);
이렇게 하면 원하는 태그안에 텍스트가 출력됨.
input 창이 아닌 div나 span 으로 깔끔하게 넣고싶을때 사용하는 방법
<script type="text/javascript">
$(document).ready(function() {
$("#total_cost").text($("#total_cost_value").val());
});
</script>
$("#id").text(넣고싶은값);
이렇게 하면 원하는 태그안에 텍스트가 출력됨.
참조1 : https://jquery.com/
참조2 : https://jqueryui.com/