在Javascript中单击两个不同的按钮后如何触发事件 [英] How to trigger an event after clicking two different button in Javascript

查看:111
本文介绍了在Javascript中单击两个不同的按钮后如何触发事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道如何在点击两个不同的按钮后触发事件。具体来说,我有一些不同ID的按钮,我想要点击它们中的两个特定按钮来触发事件。我认为这可能会发生如果我在第一次单击事件时调用某个函数,并且在此函数中,如果点击第二个按钮,我可以调用另一个函数。它似乎没有工作,所以我需要你的帮助。谢谢。 (如果有人需要更多的代码,请评论上传整个代码)

I was wondering how I can trigger an event after two different buttons being clicked. Specifically I have some buttons with different ids and I want when I click two specific buttons from them to trigger an event. I thought that this can be happen If I call some function in the first on click event and inside this function I can call another function if the second button being clicked. It does not seem to work, so I need your help. Thanks. (if anyone needs more code please comment to upload the whole code)

     function someKindOfFunction(){  
         //there is some other code here

         var ob = document.getElementById(idTable[0]); 
         var ob1 = document.getElementById(idTable[1]); 
         var ob2 = document.getElementById(idTable[2]); 
         var ob3 = document.getElementById(idTable[3]); 


         ob.addEventListener("click",function() {onCl1(idTable[0],idTable)});
         ob1.addEventListener("click",function() {onCl1(idTable[1],idTable)});
         ob2.addEventListener("click",function() {onCl1(idTable[2],idTable)});
         ob3.addEventListener("click",function() {onCl1(idTable[3],idTable)});


    }

    function onCl1(id1,idTable){
        var obj1 = document.getElementById(id1);
        obj1.disabled=true;
        var obj2,v,obj3,obj4;
        v=0;
        var temp = ["0","0","0"];
        for(var i =0 ; i<4 ; i++){
          if( id1 != idTable[i]){
            temp[v] = idTable[i];
            v=v+1;
          }
        }
        ob=document.getElementById(temp[0]);
        ob1=document.getElementById(temp[1]);
        ob2=document.getElementById(temp[2]);

        ob.addEventListener("click",function() {onCl2(id1,temp[0])});
        ob1.addEventListener("click",function() {onCl2(id1,temp[1])});
        ob2.addEventListener("click",function() {onCl2(id1,temp[2])});


      }

      function onCl2(id1,id2){
          //some kind of actions
          alert("it wokrs");

      }


推荐答案

每当你想要的按钮被点击时的某种价值。例如:

Just pass some sort of value whenever the button you want is clicked. For instance:

 ob.addEventListener("click",function() {onCl1(1)});
 ob1.addEventListener("click",function() {onCl1(1)});
  var i;   
function onCl1(value){
i += value;
if(i == 2){
//do this
   }
}

因此,基本上一旦这两个按钮被点击,该值将等于2并触发任何你想要的。

So basically once these two buttons are clicked the value will equal 2 and trigger whatever you want.

这篇关于在Javascript中单击两个不同的按钮后如何触发事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆