close
<script>
$(document).ready(function() {
$( "#<%= btnSendAbacus.ClientID %>" ).click(function() {
$("#<%= GridView1.ClientID %>").find('input:checkbox[id$="chkChoose"]').each(function() {
if($(this).is(":checked"))
{
var row = $(this).closest("tr");
var lblItemSequ = row.find("span[id*=lblItemSequ]");
var english_name = row.find("[id*=txbENGL_CUST]").val();
if(english_name == "")
{
alert('【' + lblItemSequ.text() + '】英文姓名未填');
return false;
}
}
});
});
});
</script>
文章標籤
全站熱搜
留言列表