我使用的是Primefaces 3.2,我想在页面中使用JQuery的Tab。在<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不是函数
请帮帮我吗?