标签: html forms text input hidden
在包含3个按钮(查看,复制和编辑)以及其他类型的信息已经可见的表单中,我想在按下编辑按钮时显示输入文本。怎么做?
答案 0 :(得分:0)
试试这个:
<button onClick="document.getElementById('field1').type = 'text'">Edit</button> <input type="hidden" id="field1">
Fiddle