Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在具有 3 个按钮(查看、复制和编辑)和其他类型的信息已经可见的表单中,我想在按下编辑按钮时显示输入文本。怎么做?
尝试这个:
<button onClick="document.getElementById('field1').type = 'text'">Edit</button> <input type="hidden" id="field1">
小提琴