對不起,如果這是一個非常愚蠢的問題,我對JavaScript有點新鮮。我試圖製作一個包含多個功能的網頁,但只有第一個功能會成功。我在谷歌搜索,我只有一次調用多個函數的結果,但這不是我所期待的。這裏是我想要做的一個例子:Javascript中的多個函數
<html>
<head>
<script type="text/javascript">
function frogger()
{
document.getElementById("descriptions").innerHTML="Frogger <br />Description: Get
the frog to the islands at the top of the screen without falling into the water or
getting hit by cars. <br />Controls: Up arrow key to move forward, down arrow key to
move backward, left arrow key to move left, and right arrow key to move right.";
}
function clear()
{
document.getElementById("descriptions").innerHTML=" ";
}
</script>
</head>
<body>
<div id="descriptions" style="{height:100;}">
</div>
<div class="game" onmouseover="frogger()" onmouseout="clear()">
<a href="/arcade/frogger.html"><img border="0" src="http://ggmedia.site50.net
/pics/frogger.PNG" height="100" width="100" /><br />Frogger</a>
</div>
</body>
</html>
感謝您的幫助!
你不能把換行符在這樣的字符串。 – Pointy
檢查您的JS控制檯以查看錯誤。 –
您正在錯誤地使用樣式屬性。而不是'style =「{height:100;}」'do'style =「height:100;」 – j08691