我是ATG的新手,请帮我查询
我有一个ATG标签
<dsp:input value="${email}" id="email" type="email" bean="ProfileFormHandler.value.login" maxlength="256" onkeypress="javascript:checkSubmit(event,loginSubmit);"/>
对于此标记我需要添加占位符和需要属性。我尝试添加该属性。在此之后我的申请无效。
请帮帮我。
答案 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