用于报告的 jquery 插件

发布于 2024-10-01 22:13:14 字数 70 浏览 1 评论 0原文

是否有任何 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 技术交流群。

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

发布评论

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

评论(4

眼泪淡了忧伤 2024-10-08 22:13:14

如果您想显示和隐藏现有元素,则可以执行以下操作:

<a href-"#" id="expcoll">Click me to toggle</a>
<div id="report">
     your report content goes here
</div>

$(function(){
    $("#expcoll").click(function(){
         // show or hide the report
         $("#report").toggle();
         // if you want a slide effect 
         //$("#report").slideToggle();
    });
});

如果您想动态加载 HTML 报告数据,则可以在 jQuery 中使用 AJAX 调用并将结果加载到报告 div 中。

If you want to show and hide an existing element then can do something like

<a href-"#" id="expcoll">Click me to toggle</a>
<div id="report">
     your report content goes here
</div>

$(function(){
    $("#expcoll").click(function(){
         // show or hide the report
         $("#report").toggle();
         // if you want a slide effect 
         //$("#report").slideToggle();
    });
});

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.

沉睡月亮 2024-10-08 22:13:14

听起来你想要类似 qtip 的东西

it sounds like you want something like qtip

零時差 2024-10-08 22:13:14

Rajeev,

执行以下操作,

将所有报告 html 存储在隐藏的 div 中

  <div id ="reportID" style="display:none">drop all your html here </div>

1)当您单击报告 div 时,

使用 jquery 显示 div

$('#reportID').show();

,2)当您再次单击报告 div 时,

$('#repordID').hide();

您可以绑定 rahul 提到的事件

?让我知道如果您需要更多信息

Rajeev ,

do the following ,

1) Store all the report html in hidden div

  <div id ="reportID" style="display:none">drop all your html here </div>

when you click your report div ,

2) show the div with jquery

$('#reportID').show();

when you click your report div again

do

$('#repordID').hide();

you can bind the events as mentioned by rahul

let me know if you need any more info

抚你发端 2024-10-08 22:13:14

这是一个使用基本 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.

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