<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>index.html</title> <!-- <script src="index.js"></script> --> </head> <body> <!-- <img name="logoImage"> <script> var logoImage; logoImage = new Image(); document.images.logoImage.src="img/logo.png"; </script> --> <script> logoImage = document.createElement("img"); logoImage.src = "img/logo.png"; document.body.appendChild(logoImage); </script> </body> </html>
时间: 2024-11-02 15:13:41