来一起画一条大粗线,哈哈

 

 
  
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
  2. <html> 
  3.     <head> 
  4.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 
  5.         <title>Untitled Document</title> 
  6.         <script src="prototype.js"> 
  7.         </script> 
  8.     </head> 
  9.     <body> 
  10.         <div id="insertionTest" style="font-size:20px;font-weight:bold"> 
  11.             <hr>Insertion<hr> 
  12.         </div> 
  13.         <script> 
  14.              
  15.             new Insertion.After("insertionTest", " After"); 
  16.             new Insertion.Bottom("insertionTest", " Bottom"); 
  17.             new Insertion.Top("insertionTest", " Top"); 
  18.             new Insertion.Before("insertionTest", " Before"); 
  19.         </script> 
  20.     </body> 
  21. </html>