我刚开始使用 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
});
});
我得到的是变量名而不是它的值......