document的一些用法:动态创建
作者:互联网
button没有value属性
createTextNode
function myFunction(){ var btn=document.createElement("BUTTON"); var t=document.createTextNode("CLICKME"); btn.appendChild(t); document.body.appendChild(btn); };
document的一些属性:https://www.runoob.com/jsref/dom-obj-document.html
标签:appendChild,btn,属性,动态创建,用法,var,document,createTextNode 来源: https://www.cnblogs.com/lxq3280/p/16503059.html