发布网友 发布时间:2022-04-22 04:41
共1个回答
热心网友 时间:2022-04-23 05:35
很简单的两个错误
1:fontsize该为fontSize
2:word.style.fontsize=="24pt"是表达式,应改为word.style.fontsize="24pt"(一个等于号)
测试通过了,代码:
<html>
<head><title>DOM示例四</title></head>
<script language="JavaScript">
function mm(){
if (word.style.fontSize=="48pt")
{word.style.fontSize="24pt"}
else
{word.style.fontSize="48pt"}
}
</script>
<body>
<h1 style="color:blue;font-style:italic;"><span id="word" style="cursor:hand;color="green";font-size:"24pt">英文
</span>是:Document Object Model</h1>
<p id="p1" style="font-size:16pt;cursor:hand" onclick="mm()">体验一下动态网页</p></div>
</body>
</html>