1

我的页面上有一个简单的 html/php 表单,我想知道如何向其中一个字段添加前缀?

示例:如果一个字段充当电子邮件字段,我需要有一个灰色前缀,如“example@example.com”,并在我写电子邮件时消失。

可能吗?

我的表格

我需要前缀的字段:

<div class="form-field">
  <div class="form-field-name"><b>Facebook profile</b></div>
        <input type="text" name="fields[Facebook]" class="required size_half"/>
</div>
4

1 回答 1

2

假设您实际上是指“占位符”,则可以在placeholder现代浏览器中使用该属性。例如:

<input placeholder="Facebook name" type="text" name="fields[Facebook]" class="required size_half"/>

有很多 jQuery 插件可以在旧浏览器上解决这个问题,例如:

http://www.hagenburger.net/BLOG/HTML5-Input-Placeholder-Fix-With-jQuery.html

于 2013-02-25T15:59:52.960 回答