티스토리 뷰

$("select").change(function () {
var str = "";
$("select option:selected").each(function () {
str += $(this).text() + " ";
});
          $("div").text(str);
}).trigger('change');
댓글
안내
궁금한 점을 댓글로 남겨주시면 답변해 드립니다.