禁止状态栏显示超链
1.
<style>
body{gorush:expression(defaultStatus="")}
</style>
2.
css方法实现: <style type="text/css"> <!-- body,a:hover {zmm:expression(window.status='');} --> </style> JS方法实现: <html> <head> <title>禁止状态栏显示链接</title> </head> <body onMouseOver="window.status='';return true"> <a href="#">禁止状态栏显示链接</a> </body> </html> |