将表值传递给操作类
在我的一个网页中,有一个 HTML 表格。该表将有 0 行或更多行,每行有 3 列。
它看起来像这样:
<table>
<tr>
<td>Row1-Col1</td>
<td>Row1-Col2</td>
<td>Row1-Col1</td>
</tr>
<tr>
<td>Row2-Col1</td>
<td>Row2-Col2</td>
<td>Row3-Col1</td>
</tr>
</table>
我想将列的值(td 的内容)传输到 Action 类。
有没有办法
- 获取表中的行数
- ,使用 javascript 传输值,以及如何在我的动作类
Struts 2 中获取它们。
谢谢
In one of my web pages I have a HTML table. This table will have 0 or more rows and each row has 3 columns.
It looks like this:
<table>
<tr>
<td>Row1-Col1</td>
<td>Row1-Col2</td>
<td>Row1-Col1</td>
</tr>
<tr>
<td>Row2-Col1</td>
<td>Row2-Col2</td>
<td>Row3-Col1</td>
</tr>
</table>
I want to transfer the values of the columns (content of td's) to Action class.
Is there a way to
- get the number of rows in a table
- transfer the values using javascript and how will I get them in my action class
Struts 2 btw.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想,可能的解决方案之一是,您在迭代器中有这些行...
所以 JSP 看起来像这样:
JS file:
Action class:
我没有测试这个,所以也许可能会有错误,但主要思想显示。当然,你会以html形式进入action类中的
htmlValues
,但是那里有很多html解析。One of possible solutions, I guess, that you have this rows in an iterator...
So the JSP would look like that:
JS file:
Action class:
I did not test this, so maybe there could be mistakes, but the main idea is shown. Of course, you will get in
htmlValues
in action class in html form, but there are a lot of html parses out there.