javascript - onclick event on submit button - Stack Overflow

I'm trying to make a verification that an input text has an email format after clicking submit but

I'm trying to make a verification that an input text has an email format after clicking submit buttom and calling a js function. The first problem i encounter is that after some tests, i've seen that it doesnt enter the called function. After this, i think everything should be ok, but just in case in order to not post 2 almost equal questions within minutes, ill include the most important part. Summarizing, it should check: -The email field is not null -The email field has an @ (without taking into account order etc)

Then it should tell if it found any problem, if not leave everything unchanged

I hope i made my point, if not i can try to explain it again..

 <input type="text" name="email" id="email">
    <input type="submit"  onclick=" proceed()"/>
<script>
    proceed(){
        var email= document.getElementById('email').value;
        var problems;
        if (email == ""){
            problems = "Empty variable \n";

        }

        var noat = true;
        for (int i=0; email.length; i++){
            if (email.charAt(i) == "@"){  //Compare each character
                noat=false;
                break;
            }
        }

        if (email=="" || noat=true){
            problems += "No @ \n"
            alert(problems);                        
        }
    }

</script>

I'm trying to make a verification that an input text has an email format after clicking submit buttom and calling a js function. The first problem i encounter is that after some tests, i've seen that it doesnt enter the called function. After this, i think everything should be ok, but just in case in order to not post 2 almost equal questions within minutes, ill include the most important part. Summarizing, it should check: -The email field is not null -The email field has an @ (without taking into account order etc)

Then it should tell if it found any problem, if not leave everything unchanged

I hope i made my point, if not i can try to explain it again..

 <input type="text" name="email" id="email">
    <input type="submit"  onclick=" proceed()"/>
<script>
    proceed(){
        var email= document.getElementById('email').value;
        var problems;
        if (email == ""){
            problems = "Empty variable \n";

        }

        var noat = true;
        for (int i=0; email.length; i++){
            if (email.charAt(i) == "@"){  //Compare each character
                noat=false;
                break;
            }
        }

        if (email=="" || noat=true){
            problems += "No @ \n"
            alert(problems);                        
        }
    }

</script>
Share Improve this question edited Aug 5, 2019 at 7:27 Sandun Gunasekara 1018 bronze badges asked Oct 31, 2013 at 1:12 Alvaro GomezAlvaro Gomez 3602 gold badges7 silver badges22 bronze badges 2
  • Is this your entire html? Where is the <script/> tag? – Benjamin Toueg Commented Oct 31, 2013 at 1:18
  • no, it's just the part which i have difficulties with. the others are just more filling questions. sorry, i forgot the script tag, i've just added it. – Alvaro Gomez Commented Oct 31, 2013 at 1:21
Add a ment  | 

4 Answers 4

Reset to default 5
<form onsubmit="return proceed();">
    <input type="text" name="email" id="email">
    <input type="submit" />
</form>

<script>
    function proceed() {
        var email = document.getElementById('email').value;
        var problems = "";

        if (email == "") {
            problems = "Empty variable \n";
        }

        var noat = false;
        if (email.indexOf("@") == -1) noat = true;

        //    for (int i=0; i< email.length; i++){
        //    if (email.charAt(i) == "@"){  //Compare each character
        //       noat=false;
        //       break;
        //}

        if (email == "" || noat == true) {
            problems += "No @ \n";
            alert(problems);
        }

        if (problems == "")
            return true;
        else
            return false;
    }
</script>

Instead of using onclick, i think you should use onsubmit and instead of paring each character for @ symbol, you should use email test regular expressions.

there are plenty of those online, just google.

sample regular expressions

Well I was about to write this myself but I happened to have found it like 4 hours ago. This will help you.

<script>
function proceed()
{
var email = document.getElementById("email").value;
var atpos = email.indexOf("@");
var dotpos = email.lastIndexOf(".");
if (atpos < 1 || dotpos < atpos+2 || dotpos+2 >= email.length)
  {
  alert("Not a valid e-mail address");
  return false;
  }
};
</script>

<form onsubmit="proceed();">
    <input type="text" name="email" id="email" />
    <input type="submit" />
</form>

Your code had a lot of typos, just take your time when writing. This is from w3schools

This question has already been marked as answered, but I feel that there a few key takeaways / learning points from the question, so i've added my input below, fwiw.

  1. Right now the code in your question starts off with proceed() { ... }. You should change this to function proceed() { ... } to make it a proper function declaration
  2. It's a good habit to define your variables at the top of your scope in which they are being used. As of now you have the email and problems vars declared next to each other, and that's good. However, var noat is all by itself a few lines down. Moving it up to the other declarations helps the reader of your code understand which variables are to be used in this function
  3. On the fourth line of your function you check to see if email is an empty string. If it is, you set the problems variable. But if it's empty, we can stop where we are. You can just return problems; and be done with the function.
  4. It's already been pointed out, but email.indexOf("@") uses the native JS method to do what you're doing in the string iterator.
  5. for(int i=0; ...) I thought the int i =0 looked funny, so I tried typing it into the javascript console on my browser. I got an error. You can change this to for(var i = 0; ...) for the correct syntax.
  6. Later on in the function we ask if email is empty again: if(email == ""). But we've already asked this question, and would have exited the function if it was true. We can't have an @ symbol in the string if the string is empty.
  7. This has been mentioned before but you probably want to use a regular expression to check the email.
  8. Next we have noat = true. This will actually always evaluate to true because the result of the assignment is truthy. You're setting the value of noat to true, and javascript is like "Cool awesome looks good to me". It doesn't check if noat was originally set to true or false.

I've created and tested a jsfiddle that follows most of these remendations. It also shows a way to make the code more concise and achieve a similar goal. Sorry if this es off as too preachy/know-it-all, I definitely don't. This question piqued my interest and I had to respond!

window.proceed = function () {
    var email = document.getElementById('email').value;
    if (email == "") {
        alert("Empty variable \n");
    } else if (email.indexOf("@") == -1) {
        alert("No @ \n");
    } else return true; 
}

jsfiddle

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743597456a4476616.html

相关推荐

  • javascript - onclick event on submit button - Stack Overflow

    I'm trying to make a verification that an input text has an email format after clicking submit but

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信