我正在使用 jquery 为我的网站http://www.mobileapps.co创建弹出气泡提示。它是一个移动应用程序网站,动态驱动对于主页上的所有产品,我使用以下代码,但我的一些产品没有弹出气泡。
<ul>
<?php foreach($fetchapps->arr as $result){ ?>
<script>
$(document).ready(function(){
$('.popup0<?=@$result['appid']?>').CreateBubblePopup({
position : 'top',
align : 'left',
innerHtml: '<?=@$result['embeddedcode']?><p style="float:left"><?=@substr($result['appdesc'],0,100)?><img src="images/rate-off.gif" /><img src="images/rate-off.gif" /><img src="images/rate-on.gif" /><img src="images/rate-on.gif" /><img src="images/rate-on.gif" /></p>',
innerHtmlStyle: {
color:'#FFFFFF',
'text-align':'center'
},
themeName: 'all-black',
themePath: 'images/jquerybubblepopup-theme'
});
});
</script>
<li class="popup0<?=@$result['appid']?>">
<div class="icon"><a href="app-details.php?result=<?=(@$result['appid'])?>"><?=$result['embeddedcode']?></a></div><p><a href="app-details.php?result=<?=(@$result['appid'])?>"><?=substr(@$result['apptitle'],0,15)?></a>
<span><a href="app-details.php?result=<?=(@$result['appid'])?>"><?=$result['category']?></a></span>
<b><?php if($result['appprice']!='free'){ ?>$.<?php } ?><?=$result['appprice']?></b>
</p></li><?php } ?>
</ul>