Disabling browser status bar text

前端 未结 5 1012
执笔经年
执笔经年 2021-02-13 17:50

Background

Modern browsers do away with the classic status bar and instead draw a small tooltip at the bottom of their windows that displays the link target on hover/f

5条回答
  •  甜味超标
    2021-02-13 18:01

    try this

    $(this).removeAttr("href");  
    $(this).click(function(){}).mouseover(function(){.........}).etc
    

提交回复
热议问题