我有stange错误,我不明白为什么我的图像无法显示。
echo "<div id='img' style='height':200px;'width':200px></div>";
echo "<script type='text/javascript'>
var tab_nb_match_par_user = ".json_encode($tab_nb_match_par_user).";
//chart 1
var line1 = [];
for (var k in tab_nb_match_par_user) {
line1.push([k, tab_nb_match_par_user[k]/2]);
}
var taille = 70;
for (var k in tab_nb_match_par_user){
$('#img').append('<img src='stats_matching/' + k + '.gif' alt=' + k + ' title=' + k + ' width=' + taille + ' />');
taille = taille-6;
}</script>";
答案 0 :(得分:1)
你有引号,你不应该有。在样式标记内的css属性周围不需要引号。
echo "<div id='img' style='height:200px;width:200px;'></div>";