0

使用javascript按下按钮时,如何在两个(或三个)对象上设置“点击操作”?太感谢了

4

1 回答 1

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> 

这里在 HTML 标记中定义了 3 个按钮,但是如果您单击按钮 1 - 按钮 2 和按钮 3 也会被单击

于 2012-06-22T18:35:07.723 回答