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.
我有这个网络应用程序,用户必须在其中填写表格。为了帮助他们理解表单的每个字段,我想知道哪种方式是显示字段描述的最佳方式。我正在考虑在用户单击字段时显示带有字段描述的气泡,或者更简单地显示工具提示?
提前致谢
您可以使用 HTML5 的 placeholder 属性。用途如下:
<input type="text" name="first_name" placeholder="Your first name...">
这将在文本框内占位符文本。一旦用户开始输入,文本会自动从框中清除。