Skip to content

Console Message

Wednesday, 30 Oct 2024
       

การพัฒนาเว็บแอปฯจะสามารถเปิด DevTools บนเบราว์เซอร์ เพื่อดูข้อความหรือเออเลอได้ หากต้องการแสดงข้อความที่ Console สามารถทำได้ตามขั้นตอนดังต่อไปนี้

สร้างไฟล์ index.html

TIP

การกำหนดข้อความใน Console จะอยู่ที่ <script></script>

html
<!DOCTYPE html>
  <head>
    <meta charset="UTF-8" />
  </head>
  <body>
    <p>👋 Hello 🧡 world</p>
  </body>
</html>

<script>
  console.log(
    "%c" + "Hi Guy!\nPlease contact me: contact@example.com",
    "color: #00ff74; font-size: 24px; font-weight: bold;"
  );
</script>

ผลลัพธ์​ Console


Built with: VitePress.