http://plugins.jquery.com/project/semantictabs
这是什么意思 状态 - 推荐用于1.0.x
我正在使用此插件代码,因为它是http://plugins.jquery.com/files/jquery.semantictabs.js_4.txt
然后这个(我也在现场使用prototype.js)
jQuery.noConflict();
jQuery(document).ready(function(){
$("#mytabset").semantictabs({
panel:'.mypanelclass', //-- Selector of individual panel body
head:'headelement', //-- Selector of element containing panel header, i.e. h3
active:':first' //-- Which panel to activate by default
});
});
答案 0 :(得分:1)
尝试更改
$("#mytabset").semantictabs({
panel:'.mypanelclass', //-- Selector of individual panel body
head:'headelement', //-- Selector of element containing panel header, i.e. h3
active:':first' //-- Which panel to activate by default
});
到
jQuery("#mytabset").semantictabs({
panel:'.mypanelclass', //-- Selector of individual panel body
head:'headelement', //-- Selector of element containing panel header, i.e. h3
active:':first' //-- Which panel to activate by default
});
答案 1 :(得分:0)
看起来像是一个错字,或者它根本不是指jQuery版本,而是指插件本身的版本范围。最新版本是从今年1月开始的 - 我认为现在没有人会为JQuery 1.0.x开发插件。
我只是尝试一下。机会是有效的。
重新更新:您似乎已经在使用它了。有什么东西不起作用吗?