로드 된 경우 Dojo 대화 상자를 닫아야하는 함수를 실행 중입니다. 어떻게 dojo 대화 상자가 실행 중인지 확인합니까? 정의되지 않은 순수 자바 스크립트를 사용하고 ID로 확인합니까?Dojo 대화 상자가로드되었는지 어떻게 확인할 수 있습니까?
if (dijit.byId("blah") !== undefined) {
destroyRecursive dijit;
}
또는 내가 좋아하는 대화 개체의 속성 사용합니까 :
isFocusable method
isLoaded property
: 기능 bufferAddress (xCoord, yCoord) { 이 경우 (dijit.byId ("selectLocationDlg") == 정의되지 않은!) { dijit.byId ("selectLocationDlg"). destroyRecursive(); } // 다른 코드는 여기 –