이 작은 케이스는 제목과 같지만 사진을 클릭할 때 이벤트에 응답하는 추가 케이스가 있습니다. 코드는 다음과 같습니다. 코드 복사 코드는 다음과 같습니다. <br>function onloadEvent(){ <br>var _td = document.getElementById("a1") <br>var _img = document.createElement("img"); _img.setAttribute("id ", "floatImage"); <br>_img.setAttribute("src", "icon.png") <br>_img.setAttribute("onclick", "clickImage()") <br>_img.onclick = function(){ //클릭 시 이벤트에 응답 <br>alert("click") <br>//window.location = "http://baidu.com"; >}; <br> _td.appendChild(_img); <br>} <br> 본문의 onload 이벤트에서 위 함수를 호출하면 됩니다.