如何动态地在html页面中使用javascript添加按钮

时间:2014-11-12 15:03:29

标签: javascript

我想使用java-script动态地在HTML页面上添加按钮。请让我知道怎么做。

1 个答案:

答案 0 :(得分:0)

var button = document.createElement("input");
input.type = "button";

var whatever;//get whatever you want to append button to

whatever.appendChild(button);

只需创建按钮并将其添加到您想要使用appendChild ...

的任何dom元素中