【问题标题】:I'm having trouble passing a PHP array to Javascript [closed]我无法将 PHP 数组传递给 Javascript [关闭]
【发布时间】:2015-03-08 00:02:12
【问题描述】:

我正在使用 PHP 和 javascript 创建横幅功能。我所有的图片都在文件夹 Images/banners 中,由 PHP 动态添加,然后添加到 JavaScript 数组“adImages”中。这部分工作正常,因为当我查看源时我可以在 JavaScript 中看到数组。但是,图像并未放置在页面上。

这是我的代码,我错过了什么?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Rotating Banners</title>
    <?php
    $dir = 'Images/banner';
    $files = scandir($dir);
    array_shift($files);
    array_shift($files);
?>
<script language="Javascript" type="text/javascript">

    // Setting variables
    dir = Images/banner/
    adImages = <?php echo json_encode($files); ?>;
    thisAd = 0
    imgCt = adImages.length

    // Rotate function

    function rotate() {
if (document.images) {
thisAd++
if (thisAd == imgCt) {
thisAd = 0
}


document.adBanner.src=dir+adImages[thisAd]
setTimeout("rotate()", 1 * 1000)
}
}

</script>
</head>
<body onload="rotate()">
<center>
<img src="" name="adBanner" alt="Ad Banner" />
</center>
</body>
</html>

【问题讨论】:

    标签: javascript php arrays banner rotator


    【解决方案1】:

    在将您的 dir var 设为字符串后,似乎对我有用。使用您的 Chrome 开发者工具/控制台为您指出错误。以下代码适用于我的两个示例图像:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>Rotating Banners</title>
        <?php
        $dir = 'Images/banner';
        $files = scandir($dir);
        array_shift($files);
        array_shift($files);
    ?>
    <script language="Javascript" type="text/javascript">
    
        // Setting variables
        var dir = "Images/banner/",
            adImages = <?php echo json_encode($files); ?>,
            thisAd = 0,
            imgCt = adImages.length;
    
        // Rotate function
    
        function rotate() {
    if (document.images) {
    thisAd++
    if (thisAd == imgCt) {
    thisAd = 0
    }
    
    
    document.adBanner.src=dir+adImages[thisAd]
    setTimeout("rotate()", 1 * 1000)
    }
    }
    
    </script>
    </head>
    <body onload="rotate()">
    <center>
    <img src="" name="adBanner" alt="Ad Banner" />
    </center>
    </body>
    </html>
    

    【讨论】:

    • 谢谢 :) 我认为这可能是我忽略了一些愚蠢的事情 :)
    • 不用担心 :) 如果这解决了您的问题,您是否介意接受答案。帮助其他在您之后寻找答案的人。谢谢!
    【解决方案2】:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
    <html xmlns="http://www.w3.org/1999/xhtml">
        <head>
        <script src="jquery.js"></script>
        <?php
            $dir   = '';
            $files = array();
    
            $dir        = 'Images/banner';
            $aExclusion = array( '..', '.' );
            $files      = array_diff(scandir($dir), $aExclusion);
            $files = array_values( $files );
            echo '<script>';
            echo "var adImages = [];";
            echo 'var oData = ' . json_encode( $files ) . ';';
            echo '</script>';
        ?>
        <script>
        $(document).ready(function()
        {
            // Get banner count minus one for array offset.
            iBannersSize = Object.keys(oData).length - 1;
    
            // Ensure we have at least 1 banner to rotate.
            if( iBannersSize > 0 )
            {
                window.setInterval(function(){
                    iChangeToImage = Math.round( Math.random() * ( iBannersSize - 0 ) );
                    $("div#banner_wrapper img").attr("src", 'Images/banner/' + oData[ iChangeToImage ] );
                    console.log(  oData[ iChangeToImage ] );
                }, 2000 );
            }
        });
        </script>
        </head>
        <body>
            <center>
                <div id="banner_wrapper">
                    <!-- Render first banner on page load -->
                    <img src="<?php echo 'Images/banner/' . $files[ 0 ]; ?>" alt="Ad Banner">
                </div>
            </center>
        </body>
    </html>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2011-05-16
      • 2012-06-26
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-06-11
      相关资源
      最近更新 更多