<script>
var click;
function fnClick(){
     alert('tt')
}
function test()
{
     alert("test");
}

function fnLoad()
{
     tt.onclick = click;
}

function fnSave()
{
     click = tt.onclick;
     tt.onclick = null;
     tt1.disabled = false;
}
</script>
<input type='button' >
<input type='button' onclick='fnLoad()' disabled>
<input type='button' onclick='fnSave()'>

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-27
  • 2022-12-23
  • 2021-11-16
  • 2021-06-16
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-09
相关资源
相似解决方案