0

データベースに送信する前に電子メールの有効性をチェックするために使用しているコードに問題があります。次の方法でメールをチェックするJavaScriptコードがあります。

  1. 最初のメールが有効なメールアドレスかどうかを確認する
  2. 2 つのメール フィールドが一致するかどうかを確認する

フォームの関連部分は次のとおりです。

<form action="URLGOESHERE" method="post" name="someName" onSubmit="return validation();" id="formId"> 
    <section class="sectionHeader">
        <h2>Contact Information</h2>
        <span class="important">*Required Fields</span>
    </section>
    <section id="contactInfo">
    <fieldset>
        <legend>Contact Information</legend>
        <div id="contact">
            <div class="inputGroupSameLine">
                 <label for="name" class="left"><span class="important">*</span>First Name:</label>
                 <input type="text" name="firstName" class="imp" size="20" maxlength="25" placeholder="John">
            </div>
            <div class="inputGroupSameLine">
                  <label for="name" class="left"><span class="important">*</span>Last Name:</label>         
                  <input type="text" name="lastName" class="imp" size="20" maxlength="25" placeholder="Smith">
            </div>
            <div class="inputGroupSL">
                <span class="left"><label for="org">Company/Group Name:</label></span>
                <input type="text" name="org" size="30" maxlength="50" placeholder="Auburn University">
            </div>
            <div class="inputGroupSameLine">
                <span class="left"><label for="email"><span class="important">*</span>Email:</label></span>
                <input name='email' id='email' class="imp" type='text' size='45' maxlength='45' placeholder="youremail@example.com" />
            </div>
            <div class="inputGroupSameLine">
                <span class="left"><label for="email2"><span class="important">*</span>Re-type Email:</label></span>
                <input name='email2' id='email2' class="imp" type='text' size='45' maxlength='45' placeholder="youremail@example.com"/>
            </div>
            <div id="phoneGroup">
                <span class="left"><span class="important">*</span>Phone #:</span>
                <input name='phone' type='text' class="imp" id="phone" size='12' maxlength='20' placeholder="xxx-xxx-xxxx"  />
            </div>
            <div id="extGroup">
                <span class="left">Ext:</span>
                <input name='ext' type='text' id="ext" size='12' maxlength='6' placeholder="xxxx"  />
            </div>
        </div>
    </fieldset>
</section>

そして、これがonSubmitを実行する私のコードです:

var reEMail=/^\w[\w\-\.]+\@\w[\w\-]+(\.[\w\-]+)+$/;

function validation() {
    if (!checkImportant()) {
        alert("Please enter information in all fields marked important.");
        return false;
    }
    if (!checkAttendees())
        return false;
    if (!checkEmail($('#email'),$('#email2')))
        return false;
    return true;
}

function checkImportant()   {
    important = document.getElementsByClassName('imp');
    for (i=0; i < important.length; i++) {
        if($(important[i]).val() == "") {
            $(important[i]).focus();
            return false;
        }
    }
    return true;
}

function checkAttendees() {
    total = 0 + Number($('#numAttend').val());
    parts = 0 + Number($('#8').val()) + 0 + Number($('#12').val()) + 0 + Number($('#16').val()) + 0 + Number($('#19').val()) + 0 + Number($('#26').val()) + 0 + Number($('#26').val()) + 0 + Number($('#55').val());
    count = 0;
    if (total != (parts)) {
        alert('Please check to ensure you have entered the correct number of participants.');
        count++;
        if (count%2 == 0) {
            $('#numAttend').focus();
            return false;   
        }
        else {
            $('#8').focus();
            return false;   
        }
    }
    return true;
}

function checkEmail(email,email2)   {
    if (goodEMail2(email)) {      
        if (email.val() != email2.val()) {
          alert("Please check to make sure your email address is correct in both fields!");
          email2.focus();
          return false;
        } 
        else return true;
    }
    else {
      alert("Please input a valid email address");
      setTimeout(function(){
    $('#email').focus();
    }, 100);
      email.select();
      return false;
    } 
    return false;
}

function goodEMail2(field) {
   return _checkIt2(reEMail, field);
}

function _checkIt2(re, field){
  if (!re.test(field.val())) {
      field.select();
      field.focus();
      return false;
  }
  else return true;
}

ご覧のとおり、checkEmail 関数の主な if else ステートメントでわかるように、setTimeout を使用してメール フィールドへのフォーカスを遅らせる必要があります。setTimeout を取り出すと、ページは要素にフォーカスしません。ただし、setTimeout を取り出して、指定された要素を 2 番目の電子メール フィールドに変更すると、機能します。

これに対する唯一の例外は IE10 です (FF、Chrome、Safari、および IE10 での私のテストに対して)。

私は本当にこの回避策を使用したくありません。なぜ必要なのかわかりません。誰かが私にいくつかのアイデアや答えを教えてもらえますか?

ありがとう!

編集:私のハックを今は動かせないようです。以前は何をしていたのかわかりません...そのため、その特定の要素で focus() がまったく機能しなくなりました。

4

1 に答える 1

0

変化:

function checkImportant()   {
    important = document.getElementsByClassName('imp');
    for (i=0; i < important.length; i++) {
        if($(important[i]).val() == "") {
            $(important[i]).focus();
            return false;
        }
    }
    return true;
}

に:

function checkImportant()   {
    important = document.getElementsByClassName('imp');
    for (i=0; i < important.length; i++) {
        if(important[i].value == "") { // drop the jQuery reference, not needed
            important[i].focus();      // drop the jQuery reference, not needed
            return false;
        }
    }
    return true;
}

Chromeで私のために働いた

于 2013-09-25T17:29:41.853 に答える