본문 바로가기

프로그래밍/제이쿼리

div 나 span에 텍스트 넣어주고싶을때.

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/