<div class="codetitle"> <span><a style="CURSOR: pointer" data="91358" class="copybut" id="copybut91358" onclick="doCopy('code91358')"><u>코드 복사</u></a></span> 코드는 다음과 같습니다.</div> <div class="codebody" id="code91358"> <br><script type="text/javascript"> <br> function GetValue() { <br>var strlist = document.getElementById("ListBox1");//목록 상자 가져오기 <br>var str= "" <br>//목록 상자를 탐색하여 값 가져오기 선택한 항목<br>if (strlist.options.length > 0) { <br>for (var i = 0; i < strlist.options.length; i ) { <BR>if (strlist.options[i ].selected == true) { <BR>var j = strlist.options[i].value; <BR>str =j ","; //값 값을 함께 문자열로 묶습니다 <BR>} <BR>} <BR>var strValue=str.replace (/,$/, ""); //마지막 쉼표 제거<BR>alert(strValue) <BR>} <BR>else { <BR>alert("항목 없음 목록 상자에서"); <BR>} <BR>} <BR></script><br> </div>