gpt4 book ai didi

javascript - Thymeleaf onclick 将 td 值发送到 javascript 函数

转载 作者:太空宇宙 更新时间:2023-11-04 13:40:33 25 4
gpt4 key购买 nike

我正在使用“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);
}

关于javascript - Thymeleaf onclick 将 td 值发送到 javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32994746/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com