添加js初始化事件 当年份选择2022时候 新增按钮才能点击,且在本年新增,其他年份按钮不可点击,且删除按钮初始化事件只能删除本年新增的一条,不能删完js如下:var location = this.options.location; //获取当前控件的位置var yearLocation = location.replace("W","D");var year = $("td").text();if (year==='请选择'){ this.setEnable(false); }else if (year==="2022"){ this.setEnable(true);}else{ this.setEnable(false);}添加之后新增跟删除不受限制