0
<script>

    function validate()
    {
        var str1;
        var str2;
        if(str1==str2)
        {
            alert("email1 and email 2 are matching");
        }
        else
        {
            alert("emails do not match");
        }

    }

</script>
<form>
<input type="text" name="str1"  /><br>Email 1</br>
<input type="text" name="str2"  /><br>Email 2</br>

<!-- want to implement remaining email id has to check with each other
 and make a alert to show the duplicate. -->
<input type="text" name="str3"  /><br>Email 3</br>
<input type="text" name="str4"  /><br>Email 4</br>
<input type="text" name="input5"  /><br>Email 5</br>
<input type="text" name="input6"  /><br>Email 6</br>
<input type="text" name="input7"  /><br>Email 7</br>
<input type="text" name="input8"  /><br>Email 8</br>

<br></br>
<input type="submit" onclick="validate();" value="submit" />

</form>

我想对每个输入元素进行比较,并在两个 id 匹配时发出警报。我知道电子邮件验证代码,但我需要这种比较。

换句话说,就像在文本区域中一样,它允许大量邮件 ID 输入并验证是否有任何邮件 ID 匹配并显示。

4

0 回答 0