我想在我的页面中插入一个按钮,单击该按钮会在导入的 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 编码什么的任何想法?及其变量?
干杯