我正在使用“Thymeleaf”,我想将值发送到javascript,对此我是陌生的,我正在尝试以下代码:

onclick="getPropId('${properties.id}')"

和功能
getPropId(inputID){alert(inputId);}

但是我没有得到实际的值(value)。

最佳答案

以上问题现已解决,我们需要使用Thymeleaf特定的语法。

th:onclick="'getPropId(\'' + ${properties.id} + '\');'"

现在,如果它在javascript函数中显示正确的properties.id。

function getPropId(inputID){
    alert(inputID);
}

09-20 01:02