jquery を使用して、Web サイトhttp://www.mobileapps.coのポップアップ バブル ヒントを作成していました。これはモバイル アプリケーションの Web サイトであり、動的に駆動されます。ホームページのすべての製品について、次のコードを使用していますが、一部の製品でバブル ポップアップが表示されません。
<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>