最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - onclick calling two functions simultaneously? - Stack Overflow

programmeradmin1浏览0评论

here is my code..

<script type="text/javascript">
function clicker(){

    var thediv=document.getElementById('downloadoverlay');
    if(thediv.style.display == "none"){
        thediv.style.display = "";
        thediv.appendChild()
    return false;
    }
}
function clicker1(){
    var thediv1=document.getElementById('downloadbox');
    if(thediv1.style.display == "none"){
        thediv1.style.display = "";
        thediv1.appendChild()

    return false;
    }
}



</script>

on clicking the button.. the event should call two functions simultaneously.. help..??

here is my code..

<script type="text/javascript">
function clicker(){

    var thediv=document.getElementById('downloadoverlay');
    if(thediv.style.display == "none"){
        thediv.style.display = "";
        thediv.appendChild()
    return false;
    }
}
function clicker1(){
    var thediv1=document.getElementById('downloadbox');
    if(thediv1.style.display == "none"){
        thediv1.style.display = "";
        thediv1.appendChild()

    return false;
    }
}



</script>

on clicking the button.. the event should call two functions simultaneously.. help..??

Share Improve this question asked Mar 24, 2012 at 9:44 Surendar KSurendar K 3791 gold badge6 silver badges11 bronze badges
Add a ment  | 

5 Answers 5

Reset to default 3

Add the handlers unobtrusively, from within your script. Something like:

function addHandler(etype, el,handlerFunction){
  if (el.attachEvent) {
   el.attachEvent('on' + etype, handlerFunction);
  } else {
   el.addEventListener(etype, handlerFunction, false);
  }
}
var myButton = document.getElementById('mybutton');
addHandler('click', myButton, clicker);
addHandler('click', myButton, clicker1);

Yes, you can, if you attach event listener: IE, other browsers.

Just keep in mind that they both won't end at the same moment, and one might get 'cut short', if site redirects, before second function is done.

Also, in this case, I would set CSS class on tag which contains both #downloadoverlay and #downloadbox. Instead of messing with style object directly.

Just write one function that calls both. For example, you could write

function onClick() {
  clicker();
  clicker1();
}

And set onclick="return onClick();" on the element you care about.

Just make another function to call both of them simultaneously

function callClickers(){
    clicker();
    clicker1();
}

Now add this to your button onclick

You can call the two functions at once for the onClick event

    <button type="submit" id="mySubmit" onClick=" clicker(); clicker1()">Search</button>
发布评论

评论列表(0)

  1. 暂无评论