在 JavaScript 中读取 Struts2 标签值
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使按钮具有唯一的 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