我试图dsp:input
在jsp页面上使用类型为按钮的标签。
dsp:input
标签是否支持onclick
功能?
根据文档,没有:
<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>
就像dsp:input
普通的HTML输入控件一样。它也支持该**onclick**
功能。