//----------------gridPtckView中的checkbox是否有选择(最少也要一个)-------------------------------------------
jQuery("#btnSavePrInfro").click(function () {
if (jQuery("#gridPtckView tr").length > 0) {
if (jQuery("input[type='checkbox']:checked").length > 0) {
return true;
} else {
alert("你没有选择一个");
return false;
}
}
//----------------------gridIbbJNewPritck中的文本框是是否有内容输入(最少长度大于0)------------------------------------------------------------------------
if (jQuery("#gridIbbJNewPritck tr").length > 0) {
if (jQuery.trim(jQuery(".cssOrderQty").val()).length <= 0) {
alert("请输入数量");
return false;
}
}
});