หน้าเว็บ

วันอาทิตย์ที่ 29 กรกฎาคม พ.ศ. 2555



4.1 ให้นักเรียนเขียนโปรแกรมรับชื่อ นามสกุล เมื่อรับชื่อและนามสกุลแล้วให้แสดงกล่อง
ตอบโต้ทักทายว่าสวัสดี ตามด้วยชื่อที่รับมา
<html>
 <head>
 <script language="javascript">
 <!--
  var n;
  var s;
  n=prompt("Input Your Name");
  s=prompt("Input Your S_name");
  alert("Hello  "+n +s);
 </script>
 </head>
</html>
 
4.2 ให้นักเรียนเขียนโปรแกรมหาพื้นที่สี่เหลี่ยมผืนผ้า และแสดงผลการหาค่าทางกล่องตอบโต้

<html>
 <head>
 <script language="javascript">
 <!--
  var w;
  var h;
  w=prompt("Please fill in the width");
  h=prompt("Please fill in the height");
  alert("Area of ​​a rectangle = "+w*h);
 </script>
 </head>
</html>