运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <script> function changeImage() { document.getElementById('myimage').src = "compman.gif"; } </script> <img id="myimage" onclick="changeImage()" src="compman_lowres.gif" width="107" height="98"> <p>Click the image to display a high resolution version.</p> </body> </html>