Home > Article > Web Front-end > A brief analysis of the reasons why jquery repeatedly submits requests_jquery
Generally speaking, there are two reasons:
1. The first is that the binding is not cancelled, such as $("#test").unbind("click");$("#test").click (function(){....});
2. This is because the same js file is referenced multiple times on different pages, which may also cause repeated submission of requests.