使用javascript按下按钮时,如何在两个(或三个)对象上设置“单击操作”? 非常感谢你
答案 0 :(得分:0)
您可以在按钮的click()
事件中调用其他可点击元素的onclick
方法,例如
<input id="Button1" type="button" value="Button 1" onclick="clickAllbuttons()" />
<input id="Button2" type="button" value="Button 2" onclick="alert('Button 2 is clicked!')" />
<input id="Button3" type="button" value="Button 3" onclick="alert('Button 3 is clicked!')"/>
<script type="text/javascript">
function clickAllbuttons() {
alert('Button 1 is clicked!')
document.getElementById('Button2').click();
document.getElementById('Button3').click();
}
</script>
这里有3个按钮在HTML标记中定义,但如果单击按钮1 - 按钮2和按钮3也会被点击