0
親愛的所有IM通過這個代碼,提示以下輸出鍛鍊對JSON輸出
["images\/zara\/shoes\/thumbnail\/1.png","images\/zara\/shoes\/thumbnail\/2.png"]
$imgurl=array();
$i=0;
if(mysql_num_rows($result) > 0){
//Fetch rows
while($row = mysql_fetch_array($result)){
$imgurl[$i]=$row['imgurl'];
//echo "<img src='$imgurl[$i]' />";
$i+=1;
}
}
echo json_encode($imgurl);
和現在的jQuery結束IM抓住這個代碼,並獲得顯示,但我想經營一個循環在輸出上創建新的img標籤並在新的img src中插入每個圖像路徑「」
$(document).ready(function() {
$('ul.sub_menu a').click(function() {
var txt = $(this).text();
$.ajax({
type: 'POST',
url: 'thegamer.php',
data: {send_txt: txt},
datatype:'json',
success: function(data){
$('#main-content').html(data);
}
});
});
});
將使用任何代碼全
其不工作 – sajid 2012-01-14 07:40:15
數據在你的成功函數中的價值是什麼? – craigmj 2012-01-14 07:44:08
在我的問題的頂部plz看它 – sajid 2012-01-14 07:46:00