这是我的初始页面
我想以编程方式展开所有行和列。所以,我做了一个按钮" TEST" 使用此代码模拟每个图像(+)的触发器点击
$("img").each(function () {
$(this).trigger("click");
});
这就是结果:只扩展了第一列
然后我在我的颂歌中添加了一条警告说明:
$("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.