通过javascript与新创建的html进行交互

时间:2012-04-16 17:51:10

标签: javascript html innerhtml

我想从javascript添加一个新的div到我现有的html页面。通常我使用指令document.createElement(“div”)执行此操作,并使用methode div.innerHTML =“”(例如)填充此div。这在大多数情况下工作正常,但现在我想在我的div中添加一个选择列表并用一些数据填充此列表。此方法不起作用:

function initEdit(){
     addPanel = document.createElement("div");
     addPanel.innerHTML = "<form id='addProperty' method='get'> <table>" +
                                "<tr> <td> <select size='4' style='width:140px; height:200px' id='object_property_selection' onClick='unSelect(\"data_property_selection\")'> </td>" +
                                     "<td> <select size='4' style='width:140px; height:200px' id='object_selection'>" +
                                          "<textarea style='width:140px; height:200px; display:none' id='data_selection' /> </td> </tr>" +
                                "<tr> <td> <select size='4' style='width:140px; height:100px' id='data_property_selection' onClick='unSelect(\"object_property_selection\")'> </td>" +
                                     "<td> </td> </tr>" +
                                "<tr> <td colspan=2> <input type='button' name='Submit' style='width:100%' onClick='submitProperty()' /> </td> </tr>" +
                            "</table> </form>";

    $('body').jAlert(contents, 'info', offset);
    list1.forEach(function(element, id){
        var option = document.createElement("OPTION");
        option.text = option.value = property;
        form.data_property_selection.options.add(element);
    })
}

有人知道如何解决这个问题吗? (顺便说一句:我不能在开头的页面中设置这个html代码,因为这是jAlert div的内容)

更新:解决方案

properties1.concat(properties2).forEach(function(property, id){
    if (id < object_properties.length) propertyList1 += "<option value='" + property + "'>" + property + "</option>";
    else propertyList2 += "<option value='" + property + "'>" + property + "</option>";
})
objects.forEach(function(feature, id) {
    objectList += "<option value='" + feature._id + "'>" + feature.name + "</option>";
})

propertyList = "<form id='addProperty' method='get'> <table>" +
                            "<tr> <td> <select size='4' style='width:140px; height:200px' id='object_property_selection' onClick='unSelect(\"data_property_selection\")'>" +
                                       propertyList1 + "</select> </td>" +
                                 "<td> <select size='4' style='width:140px; height:200px' id='object_selection'>" +
                                       objectList + "</select> </td>" +
                                      "<textarea style='width:140px; height:200px; display:none' id='data_selection' /> </td> </tr>" +
                            "<tr> <td> <select size='4' style='width:140px; height:100px' id='data_property_selection' onClick='unSelect(\"object_property_selection\")'>" +
                                       propertyList2 + "</select> </td>" +
                                 "<td> </td> </tr>" +
                            "<tr> <td colspan=2> <input type='button' name='Submit' style='width:100%' onClick='submitProperty()' /> </td> </tr>" +
                        "</table> </form>";

1 个答案:

答案 0 :(得分:3)

据我所知,用这种方法达到你想要的效果是不可能的。您应该做很长的事情,而不是使用innerHTML,使用createElement创建所有内部标记,并将它们作为子项附加。使用jQuery可以使很多的工作变得更容易。

以下是如何使用jQuery执行此操作的示例:linkofficial API

或者,如果您可以先创建内部列表,那么只需创建它并将其作为字符串连接为innerHTML的一部分(首先创建列表,然后再编辑innerHTML)。 / p>