Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将我的 gsp 文件中的实例变量传递给 Javascript?
这就是我所拥有的不起作用:
<input type="button" value="Add" onclick="addTo('${person.id}');" />
${person.id} 是域实例 Person 的 ID。
这对我来说很好。我能够将 id 发送到 javascript 函数并在警报中显示它。您是否收到错误,或者该值没有被传递?也许将您的javascript添加到问题中。