執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 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>