0

我目前在我的 jquery 中有这段代码:

(function(a) {
    a.fn.extend({tabify: function(e) {
            function c(b) {
                hash = a(b).find("a").attr("href");
                return hash = hash.substring(0, hash.length - 4)
            }
            function f(b) {
                a(b).addClass("active");
                a(c(b)).show();
                a(b).siblings("li").each(function() {
                    a(this).removeClass("active");
                    a(c(this)).hide()
                })
            }
            return this.each(function() {
                function b() {
                    location.hash && a(d).find("a[href=" + location.hash + "]").length > 0 && f(a(d).find("a[href=" + location.hash + "]").parent())
                }
                var d = this, g = {ul: a(d)};
                a(this).find("li a").each(function() {
                    a(this).attr("href", a(this).attr("href") + "-tab")
                });
                location.hash && b();
                setInterval(b, 100);
                a(this).find("li").each(function() {
                    a(this).hasClass("active") ? a(c(this)).show() : a(c(this)).hide()
                });
                e && e(g)
            })
        }})
})(jQuery);

这是标签的 HTML 和脚本

$("#menu").tabify({ disabled: true });
<ul id="menu">
    <li class="active"><a href="#jquery">jQuery</a></li>
    <li><a href="#prototype">Prototype</a></li>
    <li><a href="#ext">Ext</a></li>
  </ul>

  <div id="jquery">
   jQuery is a cross-browser…
  </div>
  <div id="prototype">
   The Prototype JavaScript…
  </div>
  <div id="ext">
   Ext (X-t) is a JavaScript…
  </div>

我想添加标签在我的插件中有一个禁用。有人可以告诉我正确的方法吗?

4

0 回答 0