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

How to add placeholder and require attr to dsp input tag

我是ATG的新手,请帮我查询以下问题

我有一个 ATG 标签

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

对于这个标签,我需要添加占位符和要求属性。我尝试添加那里的属性。在此之后我的应用程序无法正常工作。

请帮帮我。

您可以使用 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