W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <head> <script type="text/javascript"> function changeLink() { document.getElementById('venus').href="https://www.w3school.org.cn" } </script> </head> <body> <p>请点击金星(Venus):</p> <img src="/i/eg_planets.jpg" usemap="#planetmap" /> <map name="planetmap"> <area id="venus" shape="circle" coords="180,139,14" href ="/example/html/venus.html" alt="Venus" /> </map> <input type="button" onclick="changeLink()" value="改变链接" /> </body> </html>