Show
Ignore:
Timestamp:
07/27/08 22:02:31 (6 months ago)
Author:
hoge1e3
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/actionscript/todoshare/test/tagTest.html

    r16711 r16713  
    33<script src="../prototype.js"></script> 
    44<script> 
     5function a() { 
     6   alert(32); 
     7}  
    58function add5() { 
    69  // alert(5); 
     
    1215      function (t) { 
    1316         elem(t,2+3); 
    14       } 
     17      }, 
     18      ["button",{onclick:a},"G"] 
    1519   ]); 
    1620   //elem( $("b"),"X"); 
    17    //$("b").appendChild(document.createTextNode("Y")); 
    18    //alert(3); 
     21//   var bb=document.createElement("button"); 
     22//   bb.attachEvent("onclick",a); 
     23 //  bb.addEventListener("click",a,false); 
     24//   elem(bb,"C"); 
     25//   $("b").appendChild(bb); 
     26//alert(3); 
    1927  } catch(e) {alert(e);throw e;} 
    2028}