我刚开始学习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
});
});
我得到的是变量名而不是它的值…
试试这个:
$(document).ready(function(){
$(document).bgStretcher({
images: <?php echo $arrPath["bg"]; ?>, imageWidth: <?php echo $w; ?>, imageHeight: <?php echo $h; ?>
});
});
除了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?>
});
});