0

这是我的 jquery 代码。我正在尝试显示。这是我的代码

 $('#divTalentAgent a').each(function () {
        $(this).show();
    });

上面的代码不起作用。但是如果我将其修改如下

 $('#divTalentAgent a').each(function () {
        alert('hi');
        $(this).show();
    });

有用..

4

4 回答 4

4

正确的代码是:

$('#divTalentAgent a').show();
于 2013-08-20T07:18:56.600 回答
1

尝试这个

 $('#divTalentAgent a').each(function () {
   setTimeout(function(){$(this).show();},0);       
});
于 2013-08-20T07:16:10.590 回答
0

尝试这个

 $(document).ready(function(){
     $('#divTalentAgent a').show();
 });
于 2013-08-20T07:17:34.043 回答
-1

它的工作

jQuery(document).ready(function() {
$('li').each(function () {
        alert('hi');
        $(this).show();
    });
      });

演示

于 2013-08-20T07:18:32.490 回答