1. 程式人生 > >thymeleaf 頁面a標籤 onclick傳引數使用方式

thymeleaf 頁面a標籤 onclick傳引數使用方式

thymeleaf a標籤onclick 傳多個引數給ajax使用,用 ‘’單引號。

<a href="javascript:void(0)" th:onclick= "'javascript:goRead('+${item.id}+','+${cartoon.id}+')'"  target="_blank" th:title="${item.title}">
<script>
    function goRead( id, cartoonId){
        alert("go-read is click")
        var params = {
            username: $("#name"
).val(), phone: $("#phone").val(), password: $("#password").val(), } $.ajax({ type: "post", url: "@{/doRegister}", data: JSON.stringify(params), dataType: 'json', contentType: 'application/json;charset=UTF-8'
, success: function (r) { alert(r) } }) }
</script>