2014-11-12 3 views

답변

1

예, 가능합니다. createChooseButton 메서드를 여러 번 사용하여 원하는 위치에 넣을 수있는 선택기 단추를 여러 개 만들 수 있습니다. 예 :

 var button = Dropbox.createChooseButton(options); 
     document.getElementById("container").appendChild(button); 

     var button2 = Dropbox.createChooseButton(options2); 
     document.getElementById("container").appendChild(button2); 
+0

감사합니다. 그거야. –

관련 문제