Monday, December 5, 2011

Lab 33 Create Image using DOM




<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Lab 33 Create Image using DOM</title>
<script type="text/javascript">
   function build(){
   var myImg = document.createElement("IMG");
   myImg.setAttribute("id","imageOne");
   myImg.setAttribute("src","http://airsnarf.shmoo.com/airsnarf.jpg");
   document.body.appendChild(myImg);
   }
</script>
</head>
<body>
<input onclick="build()" value="Show Image" type="button">
<br>
</body>
</html>

0 意見:

Post a Comment