在bgStretcher中使用变量

时间:2011-12-19 02:19:02

标签: php jquery variables setting

我刚开始使用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
     });
});

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

2 个答案:

答案 0 :(得分:0)

试试这个:

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

答案 1 :(得分: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?>
     });
});