jQuery 原型中的等效/解决方法是.load()
什么?
恩详细,我必须重写这个
$("#myElement img").load(function() {
到原型。请不要打我,这是我公司的决定。
我自己想出来了:最好的解决方案(跨浏览器安全且没有缓存问题)是:
// get img element that inside of #motherElementWithAnID
// it's [0] because it's the first (and only) in the result array
var picElement = $("motherElementWithAnID").select("img")[0];
// wait for fully loaded element content
picElement.onload = function() { ... });