gpt4 book ai didi

javascript - 第:onchange ="javascript:showPIIDoc();"

转载 作者:行者123 更新时间:2023-12-03 09:56:35 27 4
gpt4 key购买 nike

我是 thymeleaf 新手。

这是我在 thymeleaf 中的选择语句

<select id="provider" class="form-control" th:onchange="'javascript:showPIIDoc();'">
<option th:value="0" >Select a Service Provider</option>
<option th:each="provider : ${user.providers}" name="name" th:value="${provider.id}" th:text="${provider.name}" >[name]</option>
</select>

这是我的 JavaScript

   <script>
function showPIIDoc()
{
alert('in here');
}
</script>

在服务器上运行后我看不到警报。请帮助我。

最佳答案

标签的 onchange 属性没有什么特别之处,需要 Thymeleaf。

更改为

<select id="provider" class="form-control" onchange="showPIIDoc()">
<option th:value="0" >Select a Service Provider</option>
<option th:each="provider : ${user.providers}" name="name" th:value="${provider.id}" th:text="${provider.name}" >[name]</option>
</select>

关于javascript - 第:onchange ="javascript:showPIIDoc();",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30722854/

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