Home > Web Front-end > JS Tutorial > body text

Jquery操作js数组及对象示例代码_jquery

WBOY
Release: 2016-05-16 16:48:51
Original
1375 people have browsed it

贴一段jQuery对js对象及数组的操作:增删改查的代码。

复制代码 代码如下:

var WorkList = new Array();//数组对象
//下面是自己定义的实体
function WorkEx(depart, title, begintime, endtime) {
    this.SId = 0;
    this.Id = -(WorkList.length+1);
    this.DepartmentName = depart;
    this.Title = title;
    this.BeginTime = begintime;
    this.EndTime = endtime;
    this.Description = "";
    this.Enable = 0;
    return this;
}
function DeleteWork(guid) {
      WorkList = $.grep(WorkList, function (val, key) {
          return val.Id != guid;
    });
      ShowWork();
}
function ShowWork() {
    var html = "";
    $.each(WorkList, function (key, val) {
        html = html + " " + val.DepartmentName + ":" + val.Title
            + ",任职时间:" + GetJsDate(val.BeginTime) + "到" + GetJsDate(val.EndTime) + "×
";
    });
    $("#tdWorkList").html(html);
}
function AddWork() {
    if(CheckIsNull("workaddress","工作地址不能为空")
        && CheckIsNull("worklevel", "职责不能为空")
        && CheckIsNull("WorkBegin", "工作开始日期不能为空")
        && CheckIsNull("WorkLeave", "工作结束日期不能为空")
        )
    {
        var isok = true;
        $.each(WorkList, function (key, val) {
            if (val.DepartmentName == $("#workaddress").val()
              && val.Title == $("#worklevel").val()
                && val.BeginTime == $("#WorkBegin").val()
                 && val.EndTime == $("#WorkLeave").val()
                )
            {
                alert("存在相同的工作经历。"); isok= false;
            } 
        });
        if (isok){
                var onework = new WorkEx($("#workaddress").val(), $("#worklevel").val(),
                        $("#WorkBegin").val(), $("#WorkLeave").val())
                WorkList.push(onework);
                //  四川省乐天区某某制药厂×
                ShowWork();
        }
    }
}
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!