我使用 Primefaces 3.2,我想在页面中使用 JQuery 的选项卡。在<head>
标签中,我包含了 JQuery:
<h:outputScript library="js" name="jquery-ui-1.10.3.custom/js/jquery-ui-1.10.3.custom.min.js" />
在带有选项卡的页面中,我包含了以下代码:
<script>
jQuery(function() {
jQuery( "#tabs" ).tabs();
});
</script>
代码不起作用。Firebug 控制台显示此消息:
jQuery(...).tabs 不是函数
你能帮我吗?