添加行函数如何在jquery中验证blur事件的数据

时间:2016-04-15 14:26:01

标签: jquery

以下是我在jquery中验证数据的示例,如果用户当时跳过任何文本框     我想提醒模糊问题是我使用克隆(添加行),所以我不能提醒     在那个添加行功能。  我不知道如何验证添加行中的数据..

jquery功能

function checkdata(txtObj)
{

  var row      = $(txtObj).parents('.itemRow');
  var weight   = row.find('.weight').val() ? row.find('.weight').val() : 0;
  var bag      = row.find('.bag').val() ? row.find('.bag').val() : 0;

  if(weight !== null)
  {
    alert("Enter Net Weight");
  }

  if(bag !== null)
  {
    alert("Enter One Bag Weight");
  }

}

https://jsfiddle.net/PrashantBhatt/Lvp34v4L/

1 个答案:

答案 0 :(得分:0)

不要在标签内创建一个属性,而是尝试使用这样的jQuery函数:

$('.weight').blur(function() {
    alert("Enter Net Weight");
});

$('.bag').blur(function() {
    alert("Enter One Bag Weight");
});