上更改onmouseover我想在我的WordPress網站上製作HTML代碼以顯示文本並更改圖片我將鼠標懸停在某個部分上時。想要圖像和文字在部分
我可以看到超鏈接部分,但我無法更改圖片或要顯示的文本,我的代碼出了什麼問題?
<script type="text/javascript">// <![CDATA[
function writeText(txt)
{
document.getElementById("desc").innerHTML=txt;
}
// ]]></script>
<img alt="DogAnatomy" src="http://www.knowyourcompanion.com/wp-content/uploads/2014/04/DogAnatomy-1024x791.png" usemap="#planetmap" width="1024" height="791" />
<map name="planetmap">
<area onmouseover="this.src='http://www.knowyourcompanion.com/wp-content/uploads/2014/04/DogAnatomyEars.png'" onmouseout="this.src='http://www.knowyourcompanion.com/wp-content/uploads/2014/04/DogAnatomy-1024x791.png'" alt="Sun" coords="163,90, 163,82, 159, 67, 155,55, 152, 42, 152,27, 155 23, 160,25, 165,32, 169,38, 173,46, 171,34, 171,24, 175, 16, 180,15, 189,20, 195,29, 199,42, 203,53, 212,66, 219, 75, 227,88, 234,98, 237,106, 237,112, 228,114, 217,115, 205,113, 187,109, 176,103" shape="poly" href="sun.htm" target="_blank" />
<area onmouseover="writeText('The dog's ears are fantastic/! They can hear over eighteen times the distance we can/!')" alt="Sun" coords="163,90, 163,82, 159, 67, 155,55, 152, 42, 152,27, 155 23, 160,25, 165,32, 169,38, 173,46, 171,34, 171,24, 175, 16, 180,15, 189,20, 195,29, 199,42, 203,53, 212,66, 219, 75, 227,88, 234,98, 237,106, 237,112, 228,114, 217,115, 205,113, 187,109, 176,103" shape="poly" href="sun.htm" target="_blank" />
ps。這只是代碼的一部分