The example in this article describes the usage of the post method in jquery and is shared with everyone for your reference. The specific usage analysis is as follows:
When using jquery to implement asynchronous interaction on the website, the two commonly used functions are the get and post methods. The get method is very simple to use. Just submit the get request directly. If there are parameters, just append them to the url. But use When passing the parameter in the post method, it needs to be written separately from the URL, which makes passing the parameter cumbersome. However, it is safer to do so, and the probability of Chinese garbled characters is also lower (the get method often passes Chinese characters with garbled characters). Phenomenon), here is a detailed introduction to how posts pass parameters.
First write an html code as follows:
Supplement:
In the case of garbled Chinese characters, The default Chinese character encoding of ajax is utf-8, and the encoding of the post receiving page should also remain the same coding.
I hope this article will be helpful to everyone’s Ajax programming based on jQuery.