dhtml?单击此处展开框或类似内容
我有一个 jsp 页面,其中有一个显示大量数据的表,我想将其拆分,以便它显示框中而不是表中的一些数据(太多而无法显示)。
不确定这是否是最好的方法...
例如,如果有一列(用户名),对于每行数据,用户名可以有一个悬停/单击事件,该事件将触发该行的额外数据显示在某种盒子中。
我怎么能这样做呢?
I have a jsp page with a table with showing lots of data, i want to split it so it shows some of the data in the box rather than in the table (too much to show).
Not sure if this is the best way to do it...
For example, if had a column (username), for each row of data, the username could have a onhover/click event that would trigger the extra data for that row to show in a box of some sort.
How could i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建另一个 jsp 或只是一个接受参数(“用户名”)并返回附加数据的 servlet。要显示该框,您可以使用 ajax 或简单的 iframe 标签。为了让它看起来更漂亮,我建议使用 jQuery 并浏览它的插件。
you'll need to create another jsp or just a servlet that accepts a parameter ('username') and returns additional data. For displaying the box you can use ajax or simple iframe tag. To make it look fancy I'd suggest using jQuery and browse its plugins.