how can url be hidden in hyperlink when mouse hover

前端 未结 6 1146
心在旅途
心在旅途 2020-11-30 10:46

How can I hide URL from displaying when mouse hovers on a hyperlink?

Hyperlink

How can I hide URL from dis

6条回答
  •  爱一瞬间的悲伤
    2020-11-30 10:51

    you technically have window.status to make custom status bar messages. you can set it during an "onmouseover" event for that element and set the window.status to a blank string.. thats how we did it a long time ago however..

    browsers these days prevent the modification of the status bar by default (as far as i know, firefox prevents it). so there is no guarantees as to this approach will do anything at all.

提交回复
热议问题