在 JavaScript 中读取 Struts2 标签值

发布于 2024-08-08 23:37:24 字数 382 浏览 4 评论 0原文

我正在使用 struts2 和 jsp。在 Jsp 中,我有一个表,其中存在几行数据。我使用迭代器来显示表的行数据。每行包含一个用于更新行数据的按钮(如行数据的优先级)。 我正在尝试使用 javascript 在单击按钮时更新行数据。我无法访问按钮的值。我无法找到单击了哪个按钮(因为每一行数据都有一个按钮)。我尝试使用下面的脚本。不工作。 :(

<强> 函数 show_alert() { var partnumber = document.getElementById("stop").Value; 警报(零件号); } 另外,请告诉我是否可以访问 struts2 标签值(在迭代器标签中)。
请帮助我。

提前致谢。 问候, 赫曼斯。

I am using struts2 with jsp. In Jsp, i have a table in which few rows of data are present. I have used iterators to display row data of table. Each row contains a button to update the row data(like priority of row data).
I am trying to use javascript to update row data when a button is clicked. I am not able to access the value of button. I am not able to find which button is clicked (since one button is present for eahc row of data). I tried using below script. not working. :(


function show_alert()
{
var partnumber = document.getElementById("stop").Value;
alert(partnumber);
}

Also, please let me know if it is possible to access values of struts2 tag values (which are with in iterator tag).
Please help me out.

Thanks in advance.
regards,
hemanth.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生死何惧 2024-08-15 23:37:24

您需要使按钮具有唯一的 ID。您可以使用迭代器的状态对象将索引附加到 id。

http://struts.apache.org/2.1.6/docs/iterator。 html

You'll need make the buttons have unique ids. You can use the iterator's status object to appending the index to the id.

http://struts.apache.org/2.1.6/docs/iterator.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文