猿问

请问该如何使用onclick 调用多参数函数?

function disabled(name,f) { alert('aaaaa'); document.getElementById(name).disabled=f;}
<script>disabled('button1',true)</script> //这样调用时成功的
在button的onclick="disabled('button1',true)"//这样不成功
是问什么呢?怎样改?

蝴蝶不菲
浏览 227回答 2
2回答

汪汪一只猫

<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>这样写实际测试好用,请你试一下吧,不好用你把代码贴出来吧。
随时随地看视频慕课网APP

相关分类

JavaScript
Java
我要回答