Change link mouseover text on the bottom of a browser window

前端 未结 3 396
萌比男神i
萌比男神i 2021-01-21 19:02

You know that text that appears in the bottom left of your browser when you mouseover a link? How do you change that?

I\'m a competent programmer so I don\'t need a code

相关标签:
3条回答
  • 2021-01-21 19:42

    You can try the window.status property, however this isn't used often anymore as most browsers now block the status bar text from being updated.

    0 讨论(0)
  • 2021-01-21 19:45

    In old browsers, you could set the property window.status to modify the text in the status bar. Because this holds serious security issues (the user could be tricked into clicking on a link which leads to another target), all modern browsers deactivated this feature.

    0 讨论(0)
  • 2021-01-21 19:46

    This can be done with javascript :

    onmouseover="window.status='TEXT HERE'"
    
    0 讨论(0)
提交回复
热议问题