javascript【2018.12.01】

<html>
<head>
  <title>this is title</title>
</head>
<body>
   <script type="text/javascript">
     alert("dfd");
     var firstname= "George";
     document.write("Hello World!");
     document.write(firstname);
     alert("dfd");
     document.write("<br/>");

      var lastname ="John";

      document.write(lastname);
   </script>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/weixin_30589127/article/details/84679348