我正在嘗試在「body」的id中創建文本區域。我用onClick事件調用該函數,但是當我單擊它時,所創建的全部內容都是[對象HTMLTextAreaElement]。我不太清楚如何讓這個工作。使用javascript創建textarea
function opentextarea() {
var input = document.createElement('TEXTAREA');
input.setAttribute('name', 'post');
input.setAttribute('maxlength', 5000);
input.setAttribute('cols',80);
input.setAttribute('rows', 40);
var button = document.createElement('BUTTON');
document.getElementById("body").innerHTML=input, button;
}
像魅力一樣工作,謝謝! – vacarsu