jQuery的.load()
原型中的等效/解决方法是什么?
恩细节,我必须重写这个
$("#myElement img").load(function() {
到Prototype。请不要打我,这是我公司的决定。
答案 0 :(得分:0)
我自己想通了:最好的解决方案(crossbrowsersafe&没有缓存问题)是:
// 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() { ... });