0

假设我有这个代码:

template.find('.dynamic-content').html(
   "<img class='immagine-webcam' src='" +
    punto.Immagine + "' alt='" + punto.Titolo + "' title='" 
    + punto.Titolo + "' />"
);

好吧:我只想在这个图像完全从服务器加载时调用一个函数。

是否可以?

4

1 回答 1

1

使用标签的onload属性。img

template.find('.dynamic-content').html(
   "<img class='immagine-webcam' onload='imgLoadedFun(this)' src='" +
    punto.Immagine + "' alt='" + punto.Titolo + "' title='" 
    + punto.Titolo + "' />"
);
于 2012-12-06T09:11:39.277 回答