这是我在 jquery ui 选项卡中使用的代码:
<script>
$(function(){
// Tabs
$('#tabs1').tabs();
$('#tabs2').tabs();
$('#tabs3').tabs();
//hover states on the static widgets
$('#dialog_link, ul#icons li').hover(function(){
$(this).addClass('ui-state-hover');
},function() {
$(this).removeClass('ui-state-hover');
});
});
</script>
在此页面中:http ://sekhu.net/charlie/index.php
现在大多数 jquery 调用都可以正常工作,但这个尤其只取决于我将它放在其他 init 中的位置。我正在使用 Sudo Slider jQuery 插件和 jquery 选项卡将选项卡包含在幻灯片中。这是不可能的,还是我在某处犯了错误?也许缺少一个 ; 或者其他的东西?
我是 jquery/script 的新手,所以我不知道出了什么问题。
谢谢