如何添加占位符并要求attr到dsp输入标记

时间:2017-09-11 10:40:06

标签: html5 atg

我是ATG的新手,请帮我查询

我有一个ATG标签

<dsp:input value="${email}" id="email" type="email" bean="ProfileFormHandler.value.login" maxlength="256" onkeypress="javascript:checkSubmit(event,loginSubmit);"/>

对于此标记我需要添加占位符和需要属性。我尝试添加该属性。在此之后我的申请无效。

请帮帮我。

1 个答案:

答案 0 :(得分:4)

您可以使用dsp:tagAttribute标记为dsp:input标记添加额外的属性。

例如:

<dsp:input value="${email}" id="email" type="email" bean="ProfileFormHandler.value.login" maxlength="256" onkeypress="javascript:checkSubmit(event,loginSubmit);">
    <dsp:tagAttribute name="placeholder" value="Enter email here..." />
</dsp:input>

供参考,请参阅https://docs.oracle.com/cd/E35319_01/Platform.10-2/ATGPageDevGuide/html/s1336dsptagattribute01.html