我在wordpress中使用了thecartpress插件来创建产品及其类别的目录。我正在使用jquery自动打开所选类别,如(http://demo.homoeo4u.com/product_category/commercial/)所示。但是在这个单一产品页面http://demo.homoeo4u.com/product/1cl59-series/的页面上,如何显示当前类别突出显示并打开树?
提前致谢
此致 帕
答案 0 :(得分:0)
你的jquery在页面加载之前就已经执行了。将你的jquery代码包装在document ready块中。
jQuery(document).ready(function($){
jQuery('.tcp_navigation_tree a:contains("'+category+'")').next('.children').show();
})