在我的HTML和JavaScript代碼中,我希望在單擊按鈕時動態添加文本字段和單選按鈕。這工作正常。但我也希望生成的新文本字段的字體大小和外觀應與上面的字體大小和外觀相同,即我想擁有相同的類。生成具有特定類的文本字段
下面是HTML:
<input type="radio" name="choices" value="o1"/>
<input type="text" name="o1" id="o1" class="inputtype"/>
<span class="file-wrapper">
<input type="file" name="o1_i" />
<span class="button">Choose an file</span>
</span>
<div id="responce"></div>
和JavaScript:
var div = document.getElementById("responce");
var radio = document.createElement("input");
radio.type = "radio";
radio.name = "choices";
radio.value = "o" + countBox;
div.appendChild(radio);
var text = document.createElement("input");
text.type = "text";
text.id = "o" + countBox;
text.name ="o" + countBox;
div.appendChild(text);
var upload = document.createElement("input")
upload.type = "file";
upload.name= "o" + countBox + "_i";
div.appendChild(upload);
和wat做關於瀏覽按鈕...? – George
向瀏覽按鈕添加一個類,但是您的原始瀏覽按鈕沒有類。 – MrCode
我是新來的HTML ...可以請你展示如何做到這一點..? – George