Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/260.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript jQuery下一个上一个库按钮未在末尾停止_Javascript_Php_Jquery_Html_Arrays - Fatal编程技术网

Javascript jQuery下一个上一个库按钮未在末尾停止

Javascript jQuery下一个上一个库按钮未在末尾停止,javascript,php,jquery,html,arrays,Javascript,Php,Jquery,Html,Arrays,我构建了这个div,它显示并允许用户浏览相册中的图像。 它首先使用php mysql获取图像的文件路径,然后将行数分配给名为array_size的javascript变量。然后,它使用array\u size变量创建picture\u list数组,并为数组的每个元素分配一个文件路径。然后,它会显示带有图像的弹出div,其中包含一组“下一步”、“上一步”和“关闭”按钮。当前,当返回到数组的第0个元素时,后退按钮将停止处理照片,这是正常的,但当返回到最大元素时,下一步按钮将继续在数组中滚动,没有为

我构建了这个div,它显示并允许用户浏览相册中的图像。 它首先使用php mysql获取图像的文件路径,然后将行数分配给名为array_size的javascript变量。然后,它使用array\u size变量创建picture\u list数组,并为数组的每个元素分配一个文件路径。然后,它会显示带有图像的弹出div,其中包含一组“下一步”、“上一步”和“关闭”按钮。当前,当返回到数组的第0个元素时,后退按钮将停止处理照片,这是正常的,但当返回到最大元素时,下一步按钮将继续在数组中滚动,没有为以下图像指定值。我希望“下一步”和“上一步”按钮都能在阵列中旋转,目前我还不知道如何实现这一点。我已经试着解决这个问题有一段时间了,还有一周就要发射这个怪物了,所以我不能再坐视不管了

HTML页面:

<html>
<head>
<style>
@import "album_style.css";
</style>
<script type="text/javascript" src="jquery-1.10.2.min.js" ></script>
<script>

 $(document).ready(function(){
var array_size = 0 ;
var active_index ;
var source_image ;
$('#largeImage').hide() ;
$('#imageBackground').hide() ;
$('#gallery img').click(function(){
    $('#largeImage img').attr('src',$(this).attr('src').replace('gallery','large'));
    $('#largeImage').show() ;
    $('#imageBackground').show() ;
    active_index = parseInt( $(this).attr('value') ) ;

});
$('.next').click(function( event ){
    active_index = active_index + 1 ;
    max_index = array_size - 1 ;
    if( active_index == array_size )
    {
        active_index = 0 ;
    }
    source_image = $('#largeImage img').attr('src') ;
    var newSrc = $('#largeImage img').attr('src').replace( source_image, picture_list[ active_index ] ) ;
    $('#largeImage img').attr('src', newSrc ) ;


});
$('.back').click(function( event ){
    active_index = active_index - 1 ;

    if( active_index < 0 )
    {
        active_index = array_size ;
    }
    source_image = $('#largeImage img').attr('src') ;
    var newSrc = $('#largeImage img').attr('src').replace( source_image, picture_list[ active_index ] ) ;
    $('#largeImage img').attr('src', newSrc ) ;

}) ;
$('.close').click(function(){
    $('#largeImage').hide();
    $('#imageBackground').hide() ;
});



});
</script>
</head>
<body>
<?php
require( 'albums_functions.php' );

draw_masthead();
gallery();



?>
</body>

</html>
PHP:

function gallery()  //displays only the first 80 photos in the database.  
{
try
{
    $album_id = $_GET['id'] ;
    $db = honneyconnect( ) ;
    if( mysqli_connect_error() )
    {
        throw new Exception( "Could not connect to the database") ;
    }
    $query = 'select * from albums where album_id="'.$album_id.'"' ;
    $albums = $db->query( $query) ;
    $album_name = $albums->fetch_row();
    $default_pic = $album_name[1].'/'.$album_name[2] ;
    $albums->free();
    $query = 'select * from photos where album_id="'.$album_id.'"' ;
    $photos = $db->query( $query ) ;
    if( !$photos )
    {
        throw new Exception( "Query returned zero results." ) ;
    }
    else
    {
        $number_of_photos = $photos->num_rows ;
        echo "<script type='text/javascript'> array_size = parseInt( ".$number_of_photos." )  ;</script>" ; //figure out the size of the javascript array of photo sources 
        echo "<script type='text/javascript'> var picture_list = new Array( array_size ) ;</script>" ; //define the array
        echo "<div id='imageBackground'></div>" ;
        echo "<div id='largeImage'><input type='button' class='close' value='X'><input type='button' class='back' value='<<'><img src='".$default_pic."' ><input type='button' class='next' value='>>'></div>";
        echo "<div id='gallery'>" ;
        echo "<div id='thumbpanel'>" ;

        if( $number_of_photos > 80 )
        {
            $stop = 80 ;
        }
        else
        {
            $stop = $number_of_photos ;
        }
        for( $i = 0; $i < $stop ; $i++ )
        {
            $row = $photos->fetch_row() ;
            if( !$row )
            {
                $i = 80 ;
            }
            else
            {
                $file_path = $album_name[1]."/".$row[2] ;    //provides the path for the image source
                echo "<img value='".$i."' src='".$file_path."'>" ; //assigns the value for use in the jQuery scripts
                echo "<script type='text/javascript'> picture_list[ ".$i." ] = '".$file_path."'</script>" ;  //sends the values to the jQuery script
            }
        }
        echo "</div></div>" ;
    }
        $photos->free();
        $db->close();
}
catch( Exception $error )
{
    echo $error ;
}
}

我想这对你来说已经晚了,但可能也会帮助其他人。您可以通过使用if语句来删除它,如果图像在那里,则保留按钮,否则删除它们。 首先,添加一个属性style=display:none;当您在php中输出.next和.back时。然后在jquery中,这样做

  if (newSRC!=='') {
      $(".next,.back").show();
  }else {
     $(".next").hide();
     $(".back").hide();
  }

你能摆弄一把小提琴,复制这个问题吗?