gpt4 book ai didi

javascript - 如何从struts html属性获取文档Id

转载 作者:行者123 更新时间:2023-12-03 12:31:54 25 4
gpt4 key购买 nike

如何在javascript中获取struts属性bean的值?

假设我在 JSP 中有以下代码:

<html:checkbox property="age">

该属性在 bean 类中定义:

private boolean age ;

如何在javascript中获取它的值?

我做了一些事情,但没有帮助。

document.forms['myform'].getElementsByName('age'); //shows error 
TypeError: document.forms.getElementByName is not a function

在这种情况下我应该使用什么..

最佳答案

另一种解决方法是使用属性

styleId: The property that sets the ID of a tag in struts.

所以你可以这样调用:

<html:checkbox property="age" styleId="age">

并通过id获取元素:

document.getElementById("age")

关于javascript - 如何从struts html属性获取文档Id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23886134/

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