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.
我想在引导表单的标签中添加一个内容可编辑的字段,但是一旦我单击编辑标签名称,光标就会移动到输入字段。
请帮助我,我刚刚添加contenteditable = "true"到标签字段。
contenteditable = "true"
谢谢!!
高拉夫
只需删除for您的标签:
for
<label for="name">Name</label><input name="name"/>
=>
<label>Name</label><input name="name"/>
首先,不知道你为什么想要这种行为,但我认为你有充分的理由!
标签上的“for”属性控制此行为,只需将其从标签中删除即可。