Reliable cross browser way of setting Status bar text

前端 未结 3 1793
余生分开走
余生分开走 2020-12-11 21:05

I\'ve heard of window.status and that it can be used to control the browser\'s status bar text, but I would like to know if there are better or newer method

相关标签:
3条回答
  • 2020-12-11 21:23

    For security reasons, most modern browsers disable status bar access by default.

    0 讨论(0)
  • 2020-12-11 21:23

    You'll find most modern browsers don't allow it any more as it was abused to hide link destinations.

    0 讨论(0)
  • 2020-12-11 21:38

    The feature you are looking for as been disabled for security reason.

    Here is another solution to your problem.

    You could create a DIV and put the position:fixed; at the bottom of the page, so people will always see it.

    0 讨论(0)
提交回复
热议问题