如果路径值为null,则设置默认值

时间:2013-11-26 09:46:58

标签: java jsp

如果字段DisplayName UserName为空

,如何设置输入字段默认值
<td><form:input type="text" path="fieldDisplayName_UserName" id="fieldDisplayName_UserName" onblur="if (this.value == '') 
{this.value = 'User Name';}" 
onfocus="if (this.value == 'User Name') {this.value = '';}" /></td>

我正在尝试

<td><form:input type="text" path="fieldDisplayName_UserName" 
id="fieldDisplayName_UserName" onblur="if (this.value == '') 
{this.value = 'User Name';}" onfocus="if (this.value == 'User Name') {this.value = '';}" value="User Name"/></td>

但此值始终显示

1 个答案:

答案 0 :(得分:1)

您可以尝试设置一个placeholder,就像this post

中建议的那样