我正在尝试将一些文本附加到动态创建的 div 中。我在 .each() 函数中执行此操作。文本未附加的问题。有人可以帮我解决这个问题。这就是我想要做的
$('<div class="window" id="window'+i+'" />')
.append($('<p id="country'+i+'">').text($(this).find('COUNTRY').text()))
.appendTo('body');
var j = 0;
$(this).find('TO').each(function(){
var $name = $(this).text();
alert("@@@@@@@@@@@@@@@@@@@@::::"+$name);
j +=1;
$('<#id="window'+i+'" />').append($('<p id="to'+j+'">Test</p>'));
});
请帮助我,让我知道我哪里出了问题