我试图在Jsp页面上使用类型为按钮的dsp:input
标签。
dsp:input
标签是否支持onclick
功能?
答案 0 :(得分:1)
根据documentation,否:
<dsp:input [type="input-control"] [name="input-name"]
bean="property-spec" ["source-spec"]
[checked="{true|false}"]
[default="value"]
[priority=integer-value]
/>
您可以尝试通过以下方式定义您的输入:
<dsp:input>
<dsp:tagAttribute name="onclick" value="..." />
</dsp:input>
答案 1 :(得分:0)
dsp:input
的行为与普通的 HTML 输入控件相同。它也支持**onclick**
函数。