我有一个for循环,它使用类divs
生成了一些panel
。
@for(comment <- event.getCommentsSorted()) {
现在我希望使用jQuery更改每个div
,但.each
只需使用类divs
获取前两个panel
。
$(window).on('load', function() {
$(".panel").each(function (index) {
alert(index);
$(this).height($(this)[index].scrollHeight - 12);
});
});
其他三个div不在那里。
我想也许是因为脚本是在生成所有divs
之前执行的,但是load
脚本应该在pageload之后执行。
我也尝试使用.ready
或使用不同数量的生成divs
但是我只获得前两个元素并不重要。
那么为什么我只得到第二个元素,有没有办法获得所有元素?
答案 0 :(得分:0)
例如,您可以尝试将呼叫包裹在.each
内的setTimeout
:
$(window).on('load', function() {
setTimeout(function() {
$(".panel").each(function (index) {
alert(index);
$(this).height($(this)[index].scrollHeight - 12);
});
}, 3000); // wait 3 seconds before executing
});
答案 1 :(得分:0)
我得到了答案,似乎
ServerElementComponent
只是不起作用。
我不知道为什么,但有了这一切都很好。
ServerElementComponent