这是什么JQuery脚本?

时间:2010-11-28 04:21:03

标签: javascript jquery html css templates

http://jqueryui.com/demos/autocomplete/#combobox

在右侧,有选择器标签(所选箭头指向左侧)

这是什么CSS菜单?为什么我不能在JQuery UI网站上找到它?

1 个答案:

答案 0 :(得分:0)

这不是一个插件,它只是页面上的一个简单的html / css / javascript。

控制菜单的JavaScript位于http://jqueryui.com/js/demos.js

具体部分:

//Rewrite and prepare links of right-hand sub navigation
    $('#demo-config-menu a').each(function() {
        $(this).attr('target', 'demo-frame');
        $(this).click(function(e) {

            resetDemos();
            $(this).parents('ul').find('li').removeClass('demo-config-on');
            $(this).parent().addClass('demo-config-on');

            //Set the hash to the actual page without ".html"
            window.location.hash = this.getAttribute('href').match((/\/([^\/\\]+)\.html/))[1];

            loadDemo(this.getAttribute('href'));
            e.preventDefault();

        });
    });