我有一些代码来创建项目以在我的 worklight 应用程序中添加 listitem dojo:
var n = domConstruct.create("div", {innerHTML:
"<div class='pName'><h4>"+hotDeal[i].title+"</h4></div>" +
"<div class='pNumber'>"+hotDeal[i].desc+"</div>"+
'<a href="'+hotDeal[i].url+'">Read more</a>'+
"</div>"});
var icon = hotDeal[i].img;
var policyInit = {icon:icon};
policyInit["class"] = "mblVariableHeight";
var policyItem = new dojox.mobile.ListItem(policyInit,n);
viewWishlist.addChild(policyItem);
我的问题是项目图标太大(hotDeal[i].img是图像 url),我想调整 listitem dojox mobile 中项目图标的大小。我该怎么做?谢谢你的帮助