首页 > Web开发 > 详细

用jquery获取tbody下的第一个tr的最后一个td里面的值

时间:2020-09-03 16:21:45      阅读:725      评论:0      收藏:0      [点我收藏+]
用jquery获取tbody下的第一个tr的最后一个td里面的值:re_process_old = $(".re_process_list tr:first td:last").text();
function(index, layero){
                var re_content = layero.find("#re_content").val();
                var re_process = layero.find("#re_process").val();

                //re_process_old = layero.find("#re_process").val();
                re_process_old = $(".re_process_list tr:first td:last").text();

                if(re_process){
                    if(re_process<re_process_old){
                        $.modal.alertWarning(‘整改进展不能小于当前值 !‘);
                    }
                    if(re_process==null){
                        $.modal.alertWarning(‘整改进展不能为空 !‘);
                    }
                }
                if (re_content) {
                    if(re_content.length > 300){
                        $.modal.alertWarning(‘进展内容不能超过300字!‘);
                        return;
                    }
                    var url = ctx + "base/sup/ques/re_process/add";
                    $.post(url, {reContent: re_content, reProgress: re_process,
                                 supFeedbackQuesId: [[${baseSupFeedbackQues.supFeedbackQuesId}]]},
                        function (result) {
                            if (result.code === web_status.SUCCESS) {
                                get_re_process();
                                layer.close(index);
                            } else {
                                $.modal.alertError(result.msg);
                            }
                        }
                    );
                } else {
                    $.modal.alertWarning(‘进展内容不能为空!‘);
                }
            }
        });

 

用jquery获取tbody下的第一个tr的最后一个td里面的值

原文:https://www.cnblogs.com/liqinzhen/p/13607976.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!