我想从托管 bean 执行 jquery,但是选择器有这个问题:
Uncaught Error: Syntax error, unrecognized expression: unsupported pseudo: lesarticles
这是托管 bean 代码:
RequestContext.getCurrentInstance().execute("$('#tabView\\:lesarticles').children().find('table tbody tr td div').css('display', 'none');");
这是组件树
<p:tabView id="tabView">
<p:tab>
<p:datatable id="lesarticles">......
当我跑步时:
RequestContext.getCurrentInstance().execute("$('#tabView:lesarticles').children().find('table tbody tr td div').css('display', 'none');");
我也有错误
我该如何解决
谢谢你