我知道如何预先填充文本区域,但我还想在文本区域中使用某些文本,这些文本纯粹是为了暗示用户应该在某个部分编写的内容,例如:
System ----- stays in text area to be sent with form
-----------
"Enter this specific type of info here" --- disappears when clicking to edit
Bug ----- stays in text area to be sent with form
-----------
"Enter only the bug report" --- disappears when clicking to edit
因此,只有用户添加了文本,而像Bug和System这样的标题将以textarea所属的形式发送,而不是'help hint'文本。 是的,我可以有不同的领域,但客户希望在一个textarea中。无法想象如何做到这一点的无痛方式。
答案 0 :(得分:0)
听起来像是the placeholder attribute的工作。
<label for="bug">Bug</label>
<textarea name="bug" id="bug" placeholder="Enter only the bug report"></textarea>
它不会在older browsers中有效,但它是 所需的咨询信息,无法完成该字段。
请参阅a live demo。