表单字段前缀

时间:2013-02-25 15:57:02

标签: php html

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

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

有可能吗?

My Form

我需要前缀字段:

<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>

1 个答案:

答案 0 :(得分: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