我遇到了这个奇怪的问题,希望有人能够提供帮助。
var k_img = jQuery('#'+c['id']).parents('.PhotoCommentImage').children('.PhotoCommentImg');
k_img[0].onload = (function() {
//these statements only executes when refresh the page, not on first load.
});
我要做的是在图像加载完成后执行语句。这里奇怪的是这些语句只在我们加载页面时执行。如果我们刷新页面就可以了。
提前致谢。
答案 0 :(得分:1)
由于您正在使用jQuery,请尝试$(k_img[0]).bind('load', function() { // });