jquery判斷多個input輸入框不能輸入相同的值

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <script type="text/javascript" src="jquery-1.6.2.min.js"></script>
    <script type="text/javascript">
        function checkName(data){
                var values="";
                $(".t").each(function(i,item){
                    var value=$(this).val();
                    values+=value; //獲取全部的名稱
                });
                var val=$(data).val(); //得到當前輸入框的值
                var newValue=values.replace(val,""); //去除當前輸入框的值
                if(newValue==""){
                    return false;
                }else{
                    if(newValue.indexOf(val)>-1){  //當前值和newValue做比較
                        alert("名稱已存在,請從新輸入!");
                        $(data).val("");
                    }
                }
             }
    </script>
</head>
<body>
<input name="inputname" class="t" onchange="checkName(this);"/>
<input name="inputname" class="t" onchange="checkName(this);"/>
<input name="inputname" class="t" onchange="checkName(this);"/>
</body>
</html>
相關文章
相關標籤/搜索