sonra nasıl bir formu sıfırlamak göndermek?

2 Cevap php

I have a simple form, lets say it takes an email address. Once the form is submitted a message stack notifies the user that their address has been submitted successfully. The issue is that after submitting the address the form field with the email still contains the email address that the user typed in, how would I reset this field? Would I have to use JavaScript for this?

Teşekkür ederim

2 Cevap

window.onload = function () {
    for(var f in document.getElementsByTagName("form"))
        f.reset();
}

Bu kesinlikle başka bir onload olay zaten ayarlanmış yok varsayarak, çalışmak istiyorum. Bunu yaparsanız, sadece kendisine iç bit (satır 2 ve 3) ekleyin. Ve tabii bu da olursa olsun çerçeve iş olacak, standart JavaScript.

$(':input','#myform')
 .not(':button, :submit, :reset, :hidden')
 .val('')
 .removeAttr('checked')
 .removeAttr('selected');

from this question:
http://stackoverflow.com/questions/680241/reset-form-with-jquery

JQuery Gerektirir: http://jquery.com