我已经创建了几个具有 id 的 div,例如 window1、window2 等。现在我只想找到
上面创建的 div 中的标签。我在 for 循环中执行此操作,但它对我不起作用。这是我正在做的
for(connectWindow=1;connectWindow<=xmlLength;connectWindow++)
{
//look for the to tag inside the html
var windo = "window"+connectWindow;
var to = "to"+connectWindow;
alert("Making connections" + windo +to)
//$("div#windo").find('strong#to')(function())
$("div#windo").find('p#to').each(function(){
alert("@@@@@@@@@@@@@@@@@@@@");
var name = $(this).text();
//display_function(name,country);
alert("Name is :::"+name);
});
}
请让我知道我哪里出错了。另外,请让我知道 JavaScript 中是否有任何解决方案。谢谢 !