0

我有一个 jQuery 菜单插件。最初,该插件是通过右键单击来操作的。(我知道,很奇怪)这个插件也有左键单击的功能......但由于某种原因它不起作用。

插件的代码现在在我的页面上:

<script type="text/javascript">
jQuery(document).ready(function(){


    var pieMenu = jQuery('#promo').pieMenu({icon : [
            { 
                path : "/wp-content/themes/Tersus/images/piemenu/winamp.png",
                alt  : "Winamp",
                fn   : function(){('Click:: Plus');window.location.href = 'http://94.23.250.14:2199/tunein/tranceilfm.pls';return false}
            },  { 
                path : "/wp-content/themes/Tersus/images/piemenu/vlc.png",
                alt  : "VLC Media Player",
                fn   : function(){('Click:: Plus');window.location.href = 'http://94.23.250.14:2199/tunein/tranceilfm.pls';return false}  
            },{ 
                path : "/wp-content/themes/Tersus/images/piemenu/QuickTime.png",
                alt  : "Quick Time Player",
                fn   : function(){('Click:: Plus');window.location.href = 'http://94.23.250.14:2199/tunein/tranceilfm.qtl';return false}
            },{ 
                path : "/wp-content/themes/Tersus/images/piemenu/WMP.png",
                alt  : "Windows Media Player",
                fn   : function(){('Click:: Plus');window.location.href = 'http://94.23.250.14:2199/tunein/tranceilfm.asx';return false}
            },{ 
                path : "/wp-content/themes/Tersus/images/piemenu/popup.png",
                alt  : "נגן Popup",
                fn   : function(){$("#popupplay").click();return false}
            },{ 
                path : "/wp-content/themes/Tersus/images/piemenu/iTunes.png",
                alt  : "iTunes",
                fn   : function(){alert('...בקרוב');return false}
            }],
        beforeMenuOpen: function(){
            jQuery('<div id="shadow"></div>').css(
            {
                'position':'fixed',
                'background-color':'#000000',
                'opacity': 0.6,
                'width':'100%',
                'height':'100%',
                'z-index' :999,
                'top':0,
                'left':0
            }).appendTo('body');
        },
        beforeMenuClose: function(){
            jQuery('#shadow').remove();
        }
    });

    $('#promo').click(function(){
    if($('#'+pieMenu.id).css('display') != 'block') //if jpie is not visible
    pieMenu.initMenu(200,200);

    })
});
</script>

如您所见..最后一个条目是单击功能..作者将此代码用于悬停而不是单击并指出为了获得左键单击...只需将 .hover 更改为 .click 但不是在职的。

这是插件的 js 文件中的点击参数:

//click event
jQuery('#'+idCore).live({
    click: function() {
        if(closable)
            removeMenu();
    },
    contextmenu:function(e){
        e.preventDefault(); 
    }
})

有什么想法吗?

4

1 回答 1

1

改变

上下文:真实,

上下文:错误,

在 JS 文件中

于 2012-08-05T17:14:10.710 回答