jQuery를 이용했습니다.
응용하면 없이도 가능합니다.
키포인트는,
function registerComponentToKiosk() {
var resultList = document.getElementById('componentSelect');
var moduleName = document.getElementById('module_name').value;
var result_srl = resultList.value;
var resultText = resultList.options[resultList.selectedIndex].text;
try { // IE 왕따
var targetList = $('#kiosk_component_list', window.opener.document)[0];
for (var i = 0; i < targetList.length; i++) {
if (targetList.options[i].value == result_srl) {
alert ('같은 부품이 있습니다.');
return false;
}
}
var targetObj = window.opener.document.createElement('option');
targetObj.text = moduleName + ' - ' + resultText;
targetObj.value = result_srl;
targetList.add (targetObj);
} catch (ex) { // 기타 다른 브라우져
var targetList = $('#kiosk_component_list', opener.document);
if ($('#kiosk_component_list > option[value=' + result_srl + ']').length > 0) {
alert ('같은 부품이 있습니다.');
return false;
}
targetList.addOption(result_srl, moduleName + ' - ' + resultText );
}
window.close();
}
응용하면 없이도 가능합니다.
키포인트는,
Opener의 문서 | Option 객체 생성 | Opener에 객체 생성 | |
IE | window.opener.document | document.createElement('option') | window.opener.document.createElement('option') |
Non-IE | opener.document | new Option | new Option(?) |
function registerComponentToKiosk() {
var resultList = document.getElementById('componentSelect');
var moduleName = document.getElementById('module_name').value;
var result_srl = resultList.value;
var resultText = resultList.options[resultList.selectedIndex].text;
try { // IE 왕따
var targetList = $('#kiosk_component_list', window.opener.document)[0];
for (var i = 0; i < targetList.length; i++) {
if (targetList.options[i].value == result_srl) {
alert ('같은 부품이 있습니다.');
return false;
}
}
var targetObj = window.opener.document.createElement('option');
targetObj.text = moduleName + ' - ' + resultText;
targetObj.value = result_srl;
targetList.add (targetObj);
} catch (ex) { // 기타 다른 브라우져
var targetList = $('#kiosk_component_list', opener.document);
if ($('#kiosk_component_list > option[value=' + result_srl + ']').length > 0) {
alert ('같은 부품이 있습니다.');
return false;
}
targetList.addOption(result_srl, moduleName + ' - ' + resultText );
}
window.close();
}
'Digital Life > 볼만한 이야기' 카테고리의 다른 글
출사 GPS정보 자료 (0) | 2009.05.22 |
---|---|
마들뷰컨트롤러 쏭 (0) | 2009.05.04 |
싸우자 IE7 (IE 에서 :hover 가 작동하지 않을 때) (1) | 2009.04.23 |
감옥에서 승리하리라. (0) | 2009.03.10 |
[링크] 시게이트 7200.11 살리는법 (0) | 2009.01.22 |