動的に関数にパラメータを渡す

523 ワード


function doit()
{

document.getElementById('aa').onclick=function(){doit2('aaaaaa');}
}
function doit2(value)
{
alert(value);
}
<html>

<body onload='doit()'>

<input type='button' value='  ' id='aa' onclick=''>

</body>
</html>


これでdoit 2パラメータに渡すことができます!!
カスタム関数でパラメータを加工することもできます!!
必要に応じて