Home  >  Article  >  Web Front-end  >  Solution to the failure of using trigger to trigger click event in jQuery

Solution to the failure of using trigger to trigger click event in jQuery

伊谢尔伦
伊谢尔伦Original
2016-11-22 14:18:304127browse

I encountered this problem today when dealing with jquery using trigger to trigger the click event of the element based on whether the cookie exists. Various debugging failed to find out the cause of the problem. Later, I searched for related issues in stackoverflow and used them. The mentioned reasons solved the problem.

The original English version is compiled as follows:

question:

I'm figuring out why this simple script is not working:

jQuery.noConflict();
jQuery(document).ready(function() {
    jQuery('.next_button a').trigger('click');
});

noConflict is necessary because I also load prototype/scriptaculous in this page.

If I replace .trigger ('click') with another function (es: .css(...) this works well. Only triggering seems to go broken.

answer:

You can only trigger a click that jQuery has created. It's one of jQuery's cute little quirks.Use the trigger method AFTER you've established the click listener.

I used this answer to solve the problem. The main idea is: you can only trigger the click function after creating the click method with jQuery. This is jQuery. A little quirk. Use the trigger method after creating the click listener.

My code just defines the click listener after the trigger function, so the click method in the trigger cannot be executed when the page is reloaded. According to this statement, changing the position of the click listener to before the trigger trigger solved the problem


.
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn