Jquery 手风琴 & WordPress
我正在尝试使用 Jquery Accordion 来显示由 wordpress 生成的链接列表wp_list_categories();
函数。
此函数返回
标记列表。我的问题是,为了让它正常工作,就像 此页面 上的第二个示例一样,标题
标签,必须得到一个特殊的类:
Guitar ;
在手风琴的 js 定义中使用:
jQuery('#navigation').accordion({
active: false,
autoheight:false,
header: '.head',
event: 'mouseover'
});
如果没有这个类,悬停会打开子列表,但是一旦我将鼠标悬停在子元素上,它就会关闭手风琴。例如此页面上的灰色块。
我的问题是这样的,是否可以使用 javascript 将所需的类(例如 .head )附加到这个动态生成的列表中?
am trying to use the Jquery accordion to show a list of links generated by wordpress with the wp_list_categories();
function.
This function returns a list of <ul>
<li>
<a>
tags. My problem is that in order to get it working fine, like the second exemple on this page, the heading <a>
tags, have to get a special class: <a class="head" href="?p=1.1.1">Guitar</a>
that is used in the js definition of the accordion:
jQuery('#navigation').accordion({
active: false,
autoheight:false,
header: '.head',
event: 'mouseover'
});
Without this class, the hover opens the sub list, but as soon as i get down to hover on of the child elements, it closes the accordion. The exemple is the grey bloc on this page.
My question goes like this, is it possible to append with javascript the required class (.head for ex) to this dynamically generated list ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确实如此,尤其是因为您正在使用 jQuery。
它并不漂亮,但应该有用。将其添加到您引用的代码之前。
It is, especially since you're using jQuery.
It's not beautiful, but it should work. Add it in before the code you quoted.
您可以将其设置为
#navigation > ,而不是将其设置为
,它将选择顶级.head
吗?力> a标签?
Instead of setting header to
.head
, could you set it to#navigation > li > a
, which would select the top level<a>
tags?