W3School TIY
(请在下面的文本框中编辑您的代码,然后单击此按钮测试结果。)
编辑您的代码:
<html> <head> <style> body { background:#000000; color:#00FF00; font-weight:bold; } a{color:#CCCCCC;} </style> <script type="text/javascript"> function cursor(text) { trail.innerHTML=text trail.style.visibility="visible" trail.style.position="absolute" trail.style.left=event.clientX+10 trail.style.top=event.clientY } function hidecursor() { trail.style.visibility="hidden" } </script> </head> <body> <h1>请把鼠标移动到链接上:</h1> <a href="../index.html" tppabs="http://www.w3school.com.cn/index.html" onmousemove="cursor('访问 W3School.com.cn')" onmouseout="hidecursor()">W3School.com.cn</a><br /> <a href="javascript:if(confirm('http://www.altavista.com/ \n\n该文件未被 Teleport Pro 下载,因为 它位于起始地址以设置的边界以外的域或路径中。 \n\n你想要从服务器打开它吗?'))window.location='http://www.altavista.com/'" tppabs="http://www.altavista.com/" onmousemove="cursor('转到 AltaVista')" onmouseout="hidecursor()">AltaVista</a><br /> <a href="javascript:if(confirm('http://www.yahoo.com/ \n\n该文件未被 Teleport Pro 下载,因为 它位于起始地址以设置的边界以外的域或路径中。 \n\n你想要从服务器打开它吗?'))window.location='http://www.yahoo.com/'" tppabs="http://www.yahoo.com/" onmousemove="cursor('使用 Yahoo 进行搜索!')" onmouseout="hidecursor()">Yahoo!</a><br /> <span id="trail" style="visibility:hidden">Hello</span> </body> </html>
查看结果: