为什么href不会发射?

时间:2015-04-10 17:14:46

标签: jquery html css href

为什么这个锚的href不会发射?

http://jsfiddle.net/3ho7ommm/4/

<span class="menuoptions active">

任何人都可以帮助我?

1 个答案:

答案 0 :(得分:1)

它正在启动,但你无法在小提示结果窗口中看到它。

更多关于你传递#

<a href="#" id="notificationLink"> 

将链接保持在同一页面上 并在代码中

$("#notificationLink").click(function()
    {
        $("#notificationContainer").fadeToggle(300);
        $("#notificationContainer2").fadeOut(300);
        return false;
    });

return false语句正在弯曲href标签以执行其正常功能