How to trigger event in JavaScript?

前端 未结 18 1861
情深已故
情深已故 2020-11-21 04:48

I have attached an event to a text box using addEventListener. It works fine. My problem arose when I wanted to trigger the event programmatically from another

18条回答
  •  无人及你
    2020-11-21 04:55

    HTML

     myLink 
    
    

    JS

    // click event listener of the link element --------------  
    document.getElementById('myLink').addEventListener("click", callLink);
    function callLink(e) {
        // code to fire
    }
    
    // function invoked by the button element ----------------
    function fireLink(event) {                   
        document.getElementById('myLink').click();      // script calls the "click" event of the link element 
    }
    

提交回复
热议问题