javascript函数可以带参数吗
1 回答
弑天下
TA贡献1818条经验 获得超8个赞
javascript函数可以传递参数
给你发一个例子
1 2 3 4 5 6 7 8 9 10 11 12 | <button onclick="testParam('a')">js函数传参</button> <script type="text/javascript"> function testParam(str){ alert("按钮传的参数为:" + str); var oStr = "test"; test(oStr); }
function test(str){ alert("函数间传的参数为:" + str); } </script> |
添加回答
举报
0/150
提交
取消