我想在我的页面中插入一个按钮,可以在导入的XSL文件的文本区域中自动生成一个lorem lipsum文本。 我真的不想使用Javascript,因为我不喜欢客户端脚本,而是JSTL,如果可能的话。
我正在尝试这样的事情,但没有运气:
<button type="button" onclick="some variable?">lorem lipsum</button>
<c: if test= "onclick some variable?">
<c: import url="loremlipsum.com/xml..." var="autoGen"/>
<c: import url="my.xsl" var="stylesheet"/>
<x: transform xml="${autoGen}" xslt="${stylesheet}"/>
</c:if>
<input type="text" name="body">
有关为我的onclick编码的内容的任何想法?及其变量?
干杯