第一個問題 請看 這邊
第二個問題 要看你想要怎麼做,如果量大我建議還是用Jquery對Class做判斷來達到範圍判斷
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(".bt").click(function(){
$(".tb").each(function() {
if($(this).val() == "" || $(this).val() == null)
{
var tb = $(this).attr("tbn");
alert("textbox" + tb + "不得為空");
}
});
});
});
</script>
</head>
<body>
<button type="button" class="bt"></button>
<input type="text" class="tb" tbn="1">
<input type="text" class="tb" tbn="2">
<input type="text" class="tb" tbn="3">
</body>
</html>