老师指点下呗
如何输出很多按钮中被点击的那一个 按钮的值 老师指点下我的代码呗(用document.getElementsByName)
<!DOCTYPE html>
<html>
<head>
<title>临时测试</title>
<script type="text/javascript" src="临时测试.js"></script>
</head>
<body >
<input type="button" name="button" id="1" value="1" onclick="fun1()">
<input type="button" name="button" id="2" value="2" onclick="fun1()">
</body>
</html>
js
function fun1(){
var arr=document.getElementsByName("button");
for(var i;i<=arr.length;i++){
alert(arr[i].value);
}
}
正在回答 回答被采纳积分+1
同学你好,同学可以尝试在js中使用for循环添加onclick单击事件来实现,比如:
在后面的课程中有相似的写法,https://class.imooc.com/lesson/1047#mid=25108
如上所示,同学可以按照案例中的写法来书写。
继续加油!祝学习愉快!
- 参与学习 人
- 提交作业 676 份
- 解答问题 9666 个
本阶段将从前端网页搭建入手,到Java Web基础,前后端结合助你完成Java Web小白的蜕变!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星