Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Μάθετε περισσότερα

FF – required input validated no matter execution runs in handler

  • 2 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 22 προβολές
  • Τελευταία απάντηση από fire-in-the-mine-hole

more options

I have some background form submission implemented. Similar to

    form.onsubmit = function XY(e) { e.prevenDefault(); … }

In form there is (similar) input

    <input type="text" name="someName" required="required" class="toBeCleared"/>

Then there is (similar) JS.

    if(e.currentTarget.elements["someName"].className === "toBeCleared") {
      e.currentTarget.elements["someName"].value = '';
    }

Everything works as expected except that in FF after all work is done the field is marked with red color as not validated (since it is empty and required).

Return false, true from body of handler has no effect on this.

I have some background form submission implemented. Similar to <pre><nowiki> form.onsubmit = function XY(e) { e.prevenDefault(); … }</nowiki></pre> In form there is (similar) input <pre><nowiki> <input type="text" name="someName" required="required" class="toBeCleared"/></nowiki></pre> Then there is (similar) JS. <pre><nowiki> if(e.currentTarget.elements["someName"].className === "toBeCleared") { e.currentTarget.elements["someName"].value = ''; }</nowiki></pre> Everything works as expected except that in FF after all work is done the field is marked with red color as not validated (since it is empty and required). Return false, true from body of handler has no effect on this.

Τροποποιήθηκε στις από το χρήστη cor-el

Όλες οι απαντήσεις (2)

more options

Maybe remove the required attribute or put some dummy content in it after you have confirmed that the data is valid?

Try to ask advice at the Stack Overflow forum site.

more options

cor-el said

Maybe remove the required attribute or put …

I was just about to get info if it is known bug, feature or whatever else there can be known about it.

I can invent some workaround anyway.

Τροποποιήθηκε στις από το χρήστη fire-in-the-mine-hole