|
<img src="img/icon1.png" alt="" bind-attr-src=" $model.toUrl1($object,?)"/>
Model.prototype.toUrl1 = function(row,?) {
debugger;
if (row.row.picPath1 != null)
return row.row.picPath1;
return "";
};
其中的?我应该怎么写才能把控件自己传回去呢,this传回去是window
<img src="img/icon1.png" alt="" bind-attr-src=" $model.toUrl1($object,?)"/>
Model.prototype.toUrl1 = function(row,?) {
debugger;
if (row.row.picPath1 != null)
return row.row.picPath1;
return "";
};
其中的?我应该怎么写才能把控件自己传回去呢,如果写this传回去是window
|
|