5
我想上預裝的Click事件圖片:JavaScript圖片對象 - 處理onload事件
// new image object
var imgObject = new Image();
// assign the path to the image to the src property
imgObject.src = document.URL + 'image/image.jpg';
// check if image has loaded
if (imgObject.complete) {
但是完整的呼叫從來沒有在第一次點擊返回true - 任何知道我在這裏失蹤?
好吧 - 我真的不能,它必須點擊 - 它打開從的href屬性中獲取的url標籤 - 除非我明顯誤解了您的建議。 – user398341
它可以在你的點擊處理程序中... –
爲什麼在src屬性設置之前調用它很重要? – user398341