用于报告的 jquery 插件
是否有任何 jquery 插件可以在单击时展开,基本上我想在单击时显示报告,然后再次最小化返回单击。
谢谢..
Is there any jquery plugin which expands on click ,basically iwant to show a report on click and then minimise back on click again.
Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您想显示和隐藏现有元素,则可以执行以下操作:
如果您想动态加载 HTML 报告数据,则可以在 jQuery 中使用 AJAX 调用并将结果加载到报告 div 中。
If you want to show and hide an existing element then can do something like
If you want to load the HTML report data dynamically then you can use AJAX calls in jQuery and load the result into the report div.
听起来你想要类似 qtip 的东西
it sounds like you want something like qtip
Rajeev,
执行以下操作,
将所有报告 html 存储在隐藏的 div 中
1)当您单击报告 div 时,
使用 jquery 显示 div
,2)当您再次单击报告 div 时,
吗
您可以绑定 rahul 提到的事件
?让我知道如果您需要更多信息
Rajeev ,
do the following ,
1) Store all the report html in hidden div
when you click your report div ,
2) show the div with jquery
when you click your report div again
do
you can bind the events as mentioned by rahul
let me know if you need any more info
这是一个使用基本 jquery-ui 对话框来执行 200 行虚拟日志的小提琴
http://jsfiddle.net/generalhenry/ T36e8/
我添加了 css 来强制内容在需要时滚动。
here's a fiddle using a basic jquery-ui dialog to do 200 line dummy logs
http://jsfiddle.net/generalhenry/T36e8/
I included css to force the content to scroll if needed.