“Formuj działanie w HTML” Kod odpowiedzi

Formularz akcji dla tej strony w HTML

<form action="#" method="GET">
  <label for="username">Username:</label>
  <input type="text" id="username" name="username" required>
  <input type="submit">
</form>
Powerful Piranha

Formuj działanie w HTML

<!--Answer from W3 Schools-->
<form action="/action_page.php">
  <label for="username">Username:</label>
  <input type="text" id="username" name="username" required>
  <input type="submit">
</form>
Old Pizza

HTML Form Form Action Metoda JavaScript

A form action set to a JavaScript function is not widely supported, I'm surprised it works in FireFox.

The best is to just set form action to your PHP script; if you need to do anything before submission you can just add to onsubmit

Edit turned out you didn't need any extra function, just a small change here:

function validateFormOnSubmit(theForm) {
    var reason = "";
    reason += validateName(theForm.name);
    reason += validatePhone(theForm.phone);
    reason += validateEmail(theForm.emaile);

    if (reason != "") {
        alert("Some fields need correction:\n" + reason);
    } else {
        simpleCart.checkout();
    }
    return false;
}
Eager Elephant

Odpowiedzi podobne do “Formuj działanie w HTML”

Pytania podobne do “Formuj działanie w HTML”

Więcej pokrewnych odpowiedzi na “Formuj działanie w HTML” w HTML

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu