2011-09-23 44 views

回答

0
window.onload = function() { // ensure that we don't try to get div1 before it's loaded 
    document.getElementById("div1").onmouseover = function() { 
     document.getElementById("div2").innerHTML = "<p>new HTML</p>"; 
    }; 
}; 

根據您的情況,您可能希望使用innerText屬性,以確保您不小心讓HTML,或者你可以use the DOM做出新的元素。

+0

不要忘記onmouseout事件,以防您想要回到原始HTML – khr055

相關問題