T1 memanggil anPoint1, mengapa function(_e){} digunakan sebagai parameter kedua, dan adakah parameter _e digunakan untuk menerima pulangan atau menetapkan nilai?
var T1=function(e,t,src,target,top,left,width,background){
anPoint1(e,function(_e) {
o[t] = _e[0];
if (t == "logoimg") {
var _slk = function(_oa){
if(_oa==true){
_sta[t] = true;
}else{
var h = B(); //var B
o.logoheight=h.height;
o.logowidth=h.width;
o.logoleft=h.left;
o.logotop=h.top;
}
};
if(e!=null){
_slk();
N();//var N
}else{
var _timeout = null;
_slk(true);
}
}else if(e!=null||background){
u.drawImage()
}else{
_sta[t] = true;
}
imgReso[t] = 'url:'+src;
},src,target,t,top,left,width,background);
}
########################################################################################
var anPoint1 = function(e, t,src,target,d,top,left,width,background) {
if (e) {
function r() {
var s = new Image;
s.src = src;
if (target) {
target.attr('src',src)
}
n.push(s);//把logo的img对象传入n数组,作为logo参数 在画布中画出
t(n);
}
}
else{
function r(){
var s1=new Image;
s1.src=src;
if (target) {
target.attr('src',src)
}
s1.onload=function(){
n.push(s1);//把logo的img对象传入n数组,作为logo参数 在画布中画出
if (d=='background') {
var w=s1.width,
h=s1.height,
bl=h/w;
if (Math.max(w,h)<o.maxwidth) {
if (w>=h) {
o.bgwidth=w;
v=o.bgwidth;
o.max=o.maxwidth;
}
else{
o.bgwidth=h;
v=o.bgwidth;
o.max=o.maxwidth*bl;
}
}
else {
if (w>=h) {
o.bgwidth=o.maxwidth;
v=o.bgwidth;
o.max=o.maxwidth
}
else{
o.max=o.maxwidth*bl;
o.bgwidth=o.maxwidth*bl;
v=o.bgwidth;
}
}
ewmcsh = true;
var ewmtop = o.ewmtop;
var ewmleft = o.ewmleft;
o.ewmleft = parseInt(left) * o.bgwidth / 270 || o.ewmleft;
o.ewmtop = parseInt(top) * o.bgwidth / 270 || o.ewmtop;
var ewmdjw = o.width;
o.width = parseInt(width) * o.bgwidth / 270 || o.width;
bl1 = (o.width-o.margin*2)/ o.bgwidth;
bl2 = (o.ewmtop+o.margin) / o.bgwidth;
bl3 = (o.ewmleft+o.margin) / o.bgwidth;
if (top != 0 && left != 0 && width != '') {
ewmcsh = false;
if (background) {
o.bgColor = o.bgColor == 'rgba(225,225,225,0)' ? background : o.bgColor;
$('#resetBgColor').css('display', 'block');
}
var logowbl = o.logowidth / ewmdjw;
var logohbl = o.logoheight / ewmdjw;
var logotopbl = (o.logotop - ewmtop) / ewmdjw;
var logoleftbl = (o.logoleft - ewmleft) / ewmdjw;
o.logowidth = o.width * logowbl;
o.logoheight = o.width * logohbl;
o.logotop = o.width * logotopbl + o.ewmtop;
o.logoleft = o.width * logoleftbl + o.ewmleft;
logozdz();
}
$('#qrcode_size').val(o.bgwidth);
$('#qrcode_size1').val(o.bgwidth);
//slidersize.setvalue(o.bgwidth);
}
t(n);
}
}
}
t = t || S;
var n = [];
r();
};
Oleh kerana jenis parameter parameter kedua ialah fungsi, jenis parameter tidak semestinya hanya rentetan, nombor atau jenis Boolean Adakah anda tidak pernah menggunakan fungsi sebagai parameter? _e ialah parameter fungsi yang diluluskan Anda boleh memahaminya sebagai fungsi yang mudah
fungsi(a){ alert(a) };