kennthemes metronic模板具有可扩展和可折叠的portlet
http://www.keenthemes.com/preview/metronic/theme/templates/admin/portlet_general.html
Portlet具有内置菜单的扩展按钮,代码如下:
<div class="tools">
<a href="javascript:;" class="expand">
</a>
</div>
我想用外部按钮控制扩展功能。有什么建议吗?
答案 0 :(得分:4)
这是我从KeenThemes客户支持中收到的回复
$('#my_portlet .portlet-title .collapse').click();
$('#my_portlet .portlet-title .expand').click();
答案 1 :(得分:0)
有一个点击处理程序可以监听&#34; expand&#34;和&#34;合同&#34;类。您应该可以拨打&#34;点击&#34;如果你给它一个id或者有其他方法来获得对元素的引用:
<div class="tools">
<a href="javascript:;" id="myCollapse" class="expand">
</a>
</div>
<div class="others">
<a href="javascript:$('#myCollapse').click();">
</a>
</div>
我能够在Chrome中的开发者工具中执行此操作,以检查其是否有效。由于您实际上并不需要调用LINK,因此使用jQuery&#39; .click()
就足以调用处理程序。