我从数据库中提取图像,然后在我的页面上显示它,但它不显示。要确认从数据库中调用图像,我在标题上输出图像名称=当您将鼠标放在看不见的图像上时,您可以看到图像名称,但图像本身根本不显示。这个网站是这样的: http://clicktravelnstay.com/desti_list.php?details=19
<div id="imgdisplay">
<div class="pagecontainer">
<div class="galleryCredit">Hotel Photos</div>
<div class="galleryType">Preview</div>
<div class="clear_both"></div>
<div class="galleryContent">
<!--image goes herewidth:650px; height:300px;-->
<!--This is Where the wide image and the caption icon will be placed-->
<div class="galleryThumbnail">
<?php
$query = "SELECT * FROM image WHERE hotel_id = {$hotel['hotel_id']}";
$image_set = mysql_query($query,$connection);
while($image = mysql_fetch_array($image_set)){?>
<a href=\"img/photos/<?php $image['image_url'];?>" title="<?php echo $image['image_url']?>">
<img src="img/photos/<?php echo $image['image_url'];?>" width="75" height="75"/></a>
<?php } ?>
<div class="clear_both"></div>
</div>
<div class="galleryPreview">
</div>
<div class="clear_both"></div>
<div class="clear_both"></div>
<div class="gallery_preload_area"></div>
</div>
<!--image goes herewidth:650px; height:300px;-->
</div>
以下代码是图库的Jquery代码。
$(document).ready(function(){
$(".galleryThumbnail a").click(function(e){
e.preventDefault();
//update thumbnail
$(".galleryThumbnail a").removeClass("selected");
$(".galleryThumbnail a").children().css("opacity","1");
$(this).addClass("selected");
$(this).children().css("opacity",".4");
//setup thumbnails
var photoCaption = $(this).attr('title');
var photofullsize =$(this).attr('href');
$(".galleryPreview").fadeOut(500, function(){
$(".gallery_preload_area").html("")
// this is what is going to happen after the fadeout
$(".galleryPreview").html("<a href='"+ photofullsize +"' style=' background-image:url("+photofullsize+");'></a>");
$(".galleryCaption").html("<p><a href='"+photofullsize+"' title='Click to view large'>View Large</a></p><p></p>")
$(".galleryPreview").fadeIn(500);
});
});
});
答案 0 :(得分:0)
路径
http://clicktravelnstay.com/img/photos/1344707033.png
返回404(未找到)。
您正在成功从数据库中提取图像名称,但服务器上不存在实际的图像文件。
答案 1 :(得分:0)
您应该查看生成的HTML:
<a href=\"img/photos/" title="1344707033.png">
^--- bad escape.
您输出的是无效的html,加上href只是一条路径,而不是指向实际的图像。
这意味着:
<a href=\"img/photos/<?php $image['image_url'];?>" title="<?php echo $image['image_url']?>">
^---missing 'echo'
<img src="img/photos/<?php echo $image['image_url'];?>" width="75" height="75"/></a>
和$image['image_url']
不包含任何内容。