<button type="button" th:onclick="|javascript:fun(${article.id})|" >按钮</button>
解析后
<button type="button" onclick="javascript:fun(1)">按钮</button>
也可以直接拼串
<button type="button" th:onclick="'javascript:fun('+${article.id}+')'" >按钮</button>
<button type="button" th:onclick="|javascript:fun(${article.id})|" >按钮</button>
解析后
<button type="button" onclick="javascript:fun(1)">按钮</button>
也可以直接拼串
<button type="button" th:onclick="'javascript:fun('+${article.id}+')'" >按钮</button>