我对 Web 开发非常陌生,我正在尝试创建一个网页,该网页将在单击按钮时向下延伸。我找到了这个链接,其中包含以下代码:
HTML:
<ul id="myList"><li>Coffee</li><li>Tea</li></ul>
<p id="demo">Click the button to append an item to the list</p>
<button onclick="myFunction()">Try it</button>
JavaScript:
function myFunction()
{
var node=document.createElement("LI");
var textnode=document.createTextNode("Water");
node.appendChild(textnode);
document.getElementById("myList").appendChild(node);
}
这将添加信息。我想这样做,以便它动画化,而不仅仅是出现。我该怎么办?
任何帮助或教程表示赞赏。谢谢!