Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะแสดงผลลัพธ์ในจาวาสคริปต์ได้อย่างไร?


มี 4 วิธีในการแสดงผลลัพธ์ใน JavaScript

ก) การแสดงผลลัพธ์ในองค์ประกอบ HTML โดยใช้แอตทริบิวต์ innerHTML

ตัวอย่าง

<html>
<body>
<p id="display"></p>
<script>
   document.getElementById("display").innerHTML = 10 + 10;
</script>
</body>
</html>

ผลลัพธ์

20.


b) การแสดงผลลัพธ์โดยใช้ document.write()

ตัวอย่าง

<html>
<body>
<script>
   document.write(2 + 3);
</script>
</body>
</html>

ผลลัพธ์

5


c) การแสดงผลลัพธ์ผ่าน console.log()

ตัวอย่าง

<html>
<body>
<script>
   console.log(2 + 3);
</script>
</body>
</html>

ในคอนโซลดีบักเกอร์ เอาต์พุต

5.


d) แสดงผลผ่านช่องแจ้งเตือน

ตัวอย่าง

<html>
<body>
<script>
   alert(2 + 3);
</script>
</body>
</html>

ในกล่องหน้าต่างแจ้งเตือน เอาต์พุต

5

ในกรณีของการจัดการสตริง json หรือ data console.log ขนาดใหญ่อื่น ๆ เป็นตัวเลือกที่ดีที่สุด