這回的小case如題,額外還有一個,當點擊圖片時回應事件。程式碼如下: 複製程式碼 程式碼如下: <BR>function onloadEvent(){ <BR>var _td = document.getElementById("a1"); <BR>var _img = document.createElement("img"); <BR>_img.setAttribute("id",, "floatImage"); <BR>_img.setAttribute("src", "icon.png"); <BR>_img.setAttribute("onclick", "clickImage()"); <BR>_img.onclick = function( ){ //點擊時回應事件<BR>alert("點擊"); <BR>//window.location = "http://baidu.com"; 跳轉url <BR>}; <BR>_td. appendChild(_img); <BR>} <BR> 在body中的onload事件呼叫上面這個函數就可以了。