博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Js全选,插入实现
阅读量:5303 次
发布时间:2019-06-14

本文共 1962 字,大约阅读时间需要 6 分钟。

//全选        function CheckAll() {            ids.splice(0, 1000000);            var flag = $("#All_Check").attr("checked");            $(".orderCheck").each(function () {                    if (typeof (flag) == 'undefined')                        flag = false;                    //$(":input[type=checkbox]").attr("checked", flag);                    $(this).children().attr("checked", flag);                    if ($(this).children().attr("checked")) {                        ids.push($(this).attr("SupplierId"));                    } else {                        for (var i in ids) {                            if ($(this).attr("SupplierId") == ids[i]) {                                ids.splice(i, 1);                                break;                            }                        }                    }                }            );            $("#hfids").val(ids);        }        //插入订单号        function InsertOrderCoder(obj) {            if (obj.attr("checked")) {                ids.push(obj.parent().attr("SupplierId"));            }            else {                for (var i in ids) {                    if (obj.parent().attr("SupplierId") == ids[i]) {                        ids.splice(i, 1);                        break;                    }                }            }            $("#hfids").val(ids);        }        //点击搜索加载所有勾选的供应商        function ConfirmSelectedId()        {            ids.splice(0, 1000000);            $(".orderCheck").each(function () {                if ($(this).children().attr("checked")) {                    ids.push($(this).attr("SupplierId"));                }             }            );            $("#hfids").val(ids);        }                   
<%--" οnclick="InsertOrderCoder($(this));" />--%>

 

转载于:https://www.cnblogs.com/Unrmk-LingXing/p/4271712.html

你可能感兴趣的文章
JDesktopPane JInternalFrames
查看>>
错误The request sent by the client was syntactically incorrect ()的解决
查看>>
Java基础知识学习(九)
查看>>
redis在windows下总是报错,就是下面的错误,这是哪里出错了
查看>>
Asp.net窄屏页面 手机端新闻列表
查看>>
Linux 密钥验证
查看>>
windows下UDP服务器和客户端的实现
查看>>
NetAdvantage webdatagrid 控件的一些属性
查看>>
MySQL各版本的区别
查看>>
[poj1006]Biorhythms
查看>>
迭代器
查看>>
elasticsearch type类型创建时注意项目,最新的elasticsearch已经不建议一个索引下多个type...
查看>>
jQury 跳出each循环的方法
查看>>
spring AOP 之五:Spring MVC通过AOP切面编程来拦截controller
查看>>
在编译安装程序时候遇到/usr/bin/ld: cannot find -lxxx的时候的解决办法。
查看>>
使用 INSERT 和 SELECT 子查询插入行
查看>>
shell脚本解析10(练习4)------监视文件
查看>>
Java对象引用
查看>>
linux虚拟环境搭建
查看>>
ubuntu重装mysql
查看>>