0

我刚开始使用 php 编程,我有这个问题:

有没有办法用变量设置 bgStretcher 图像的宽度和高度值?

<?php $arrPath=array("bg" => "http://mydomain.com/myimage.jpg"); $w=1500; $h=800; ?>

$(document).ready(function(){
     $(document).bgStretcher({
           images: $arrPath["bg"], imageWidth: $w, imageHeight: $h
     });
});

我得到的是变量名而不是它的值......

4

2 回答 2

0

除了 Indranil 的回答之外,另一种编写此代码以节省空间的方法如下:

<?php $arrPath=array("bg" => "http://mydomain.com/myimage.jpg"); $w=1500; $h=800; ?>

$(document).ready(function(){
     $(document).bgStretcher({
           images: <?=$arrPath["bg"]?>, imageWidth: <?=$w?>, imageHeight: <?=$h?>
     });
});
于 2011-12-19T02:45:11.603 回答
0

尝试这个:

$(document).ready(function(){
     $(document).bgStretcher({
           images: <?php echo $arrPath["bg"]; ?>, imageWidth: <?php echo $w; ?>, imageHeight: <?php echo $h; ?>
     });
});
于 2011-12-19T02:31:05.267 回答