我编写了一个显示 2 个按钮和一个文本的代码。当我们单击按钮时,“GROW”文本的大小应该会增大,当我们单击“SHRINK”时,文本的大小应该会减小。但这仅适用于单击一次。当我第二次单击时,不会调用这些函数。为什么会这样?这是它的代码..
<html>
<head>
<script type="text/javascript">
function Grow()
{
var a=document.getElementById(1);
a.style.fontSize=a.style.fontSize+50;
}
function Shrink()
{
var a=document.getElementById(1);
a.style.fontSize=20;
}
</script>
</head>
<body>
<input type="button" value="grow" onclick="Grow()">
<input type="button" value="shrink" onclick="Shrink()">
<p id="1"> Hello </p>
</body>