1、confirm 确认框
if (confirm(“你确定给此代理设置下级代理上限吗?”)) {
}
2、//全部替换 $(this).attr(‘id’).replace(new RegExp(‘\”‘,”g”),”)
3、判断变量是否定义
typeof(downDatas) != “undefined”
4、对类似1111,2222,3333字符串的验证 正则
let regexp = /^([0-9]+,){1,}$/;
if (regexp.test(str_acc) == false) {
layer.msg(‘玩家编号格式错误,请确认格式:111,222’,{icon:2,time:1000})
}