0
Можно ли с помощью Java Script обработать форму HTML? Если да, то как?
В курсе по Java Script очень мало рассказано про формы HTML.
2 Respostas
+ 2
You can use Javascript/jQuery to help validate, handle and even submit forms. However, it's working in conjunction with a server-side language (such as PHP, NodeJS, etc...) to accomplish the task of handling the form from that end. JS in this case is simply manipulating the data or verifying it prior to sending it off to the server to process.
Hope that helps. Learn a server-side language and SQL to assist you with what you're trying to accomplish.
0
Thank you! And can you write me an example of how to do this (it is Java Script code)?