通过弹出窗口填充父窗口中的选择框

时间:2012-05-04 10:44:24

标签: javascript

我有一个弹出窗口,用于填充父窗口中的选择列表。

以下是我从弹出窗口中填充选择列表的javascript代码:

function add_2_list(element) {
    var destinationList =window.opener.document.getElementById('selectlist_id');
    var select_index = destinationList.length;
    destinationList.options[select_index] = new Option(element, element, true) 
}

此代码在mozilla firefox上运行良好,但似乎无法在Internet Explorer 9上运行。

如果有人能帮我找到解决IE 9问题的方法,我将不胜感激。

由于