简体   繁体   中英

Is using a Jquery function executed at server side or client side?

for example the line below $(“#commentForm”).validate();

after the web page is initially loaded, does the execution requires further communication with the server or it is handled at the client's side?

Thank you very much!

Javascript is the language works on the client side. And jQuery is kinda an extension of Javascript so the same with jQuery.

If you need to communicate to the server, you can learn about AJAX request :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM