jquery获取从文件加载的元素

时间:2015-04-23 20:13:00

标签: javascript jquery html

我在div中多次从html文件加载一个表单。我想循环遍历这个div中创建的元素。

我编写了以下代码来加载每个按钮上的文件:

 function addForm()
{
    file = "field.php";
    $(document).ready(function() {
        $("#ctrl_fields").append( $('<div />').load(file));
    });
}

现在,我想循环遍历已加载的文件(file.php),其中包含一些html代码。 我写了以下内容,但它不起作用:

$("#ctrl_fields").each(function(){

   // do something here

});

1 个答案:

答案 0 :(得分:0)

$("#ctrl_fields > div ").each(function(){
   $(this).doSomething(); //this is the current div
});