js 함수 호출 대상 클릭 이벤트

617 단어 jsfunctionclick

//      strings numbers     ,                  ,             “    ” Web    。          ,                 。

function byId(element, event, f){ 
   Document.getElementById(element).['on'+event] = f; 
   //if is the function that we pass as parameter 
} 

//       
byId('myBtn','click',function(){alert('Hello World')}); 

//           ,       
var msg = function(m){ alert(m);} 

//   
msg('Hello world'); //This will work 

좋은 웹페이지 즐겨찾기