将函数实现为js字符串变量

时间:2013-09-15 21:12:21

标签: javascript jquery html variables raty

这里我有一个代码,可以在SIDE_bar中显示照片,名称和评分

但我只得到第一个对象,所以我不知道这个代码有什么问题:

var rating="";
if (!!place.rating) ocene = raty({ score: place.rating, path: 'http://wbotelhos.com/raty/lib/img' }); 
  var photo ="<img src='http://carsedia.com/code/voyage/icons/7.png'></img>";
  if (!!place.photos) photo = '<img src='+place.photos[0].getUrl({ 'maxWidth': 50, 'maxHeight': 50 })+'></img>';
  var htmlside = "<div class='element'>"+photo+"<a href='javascript:google.maps.event.trigger(gmarkers[" + parseInt(gmarkers.length - 1) + "],\"click\");'>" + place.name + "</a></br>" + ocene + "</div>";


  $(htmlside).appendTo('#side_bar');
}

没有评级和RATY插件,一切都很完美。

0 个答案:

没有答案