function disabled(name,f) { alert('aaaaa'); document.getElementById(name).disabled=f;}<script>disabled('button1',true)</script> //这样调用时成功的在button的onclick="disabled('button1',true)"//这样不成功是问什么呢?怎样改?
2 回答
汪汪一只猫
TA贡献1898条经验 获得超8个赞
<html>
<head>
<script> function test(name,f){
alert('aaaaa');
document.getElementById(name).disabled=f;
}
</script></head>
<body>
<input id="button1" type="button" onclick="test('button1',true);" value="点击"/>
</body>
</html>
这样写实际测试好用,请你试一下吧,不好用你把代码贴出来吧。
添加回答
举报
0/150
提交
取消