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({無効: 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