<div class="codetitle"> <span><a style="CURSOR: pointer" data="78799" class="copybut" id="copybut78799" onclick="doCopy('code78799')"><u>코드 복사</u></a></span> 코드는 다음과 같습니다.</div> <div class="codebody" id="code78799"> <br>//여러 데이터 메서드 반환<br>function getPos( ){ <br>var xx = "xx"; <br>alter(xx); <br>var yy = "yy" <br>return{x:xx,y:yy} <br>/ /호출 <br>function getXY(){ <br>var ret = getPos(); <br>alert(ret.x); <br>alert(ret.y); 🎜> <br> </div>