触发(“点击”)仅触发一次

时间:2015-01-16 16:38:24

标签: javascript triggers click reportviewer expand

这是我的初始页面 enter image description here

我想以编程方式展开所有行和列。所以,我做了一个按钮" TEST" 使用此代码模拟每个图像(+)的触发器点击

$("img").each(function () { 

    $(this).trigger("click");

});

这就是结果:只扩展了第一列 enter image description here

然后我在我的颂歌中添加了一条警告说明:

$("img").each(function () { 
      alert('HI');
      $(this).trigger("click");

});

它有效。我的意思是每次我点击弹出窗口失去它后,它会扩展一行/列。 我认为每次触发指令之间需要时间。 最后我做了一个像那样的setTimeOut指令

$("img").each(function () { 

            setTimeout(function () {
                $(this).trigger("click");
            }, 2000);

        });
But I got the same problem : only the first column was expanded and that's it.

0 个答案:

没有答案