我正在尝试通过 FBJS 向我的 facebook tab-app 添加一些图像。
问题:
我看不到图像,也不知道为什么。
FBJS 代码
url = "http://www.domain.de/image.gif";
myImg = document.createElement('img');
myImg.setStyle( {backgroundImage: 'url('+url+')' });
document.getElementById('wrapper').appendChild(myImg);
呈现的 html
<img style="background-image: url("http://www.domain.de/image.gif";);">