html标记中的javascript变量

时间:2014-05-13 16:32:07

标签: javascript html5

我一直在使用www.dynamicdrive.com上的传送带幻灯片脚本。我想使图像的高度为变量值。这是代码。

var _docHeight = (document.height !== undefined) ? document.height : document.body.offsetHeight;
var _docWidth = (document.width !== undefined) ? document.width : document.body.offsetWidth;
var h;

var w1 = window.innerWidth;
var h1 = window.innerHeight;
var w = w1/1.365;
var h = h1 /1;
//Specify the slider's width (in pixels)
//Specify the slider's width (in pixels)
var sliderwidth=w + "px"
//Specify the slider's height
var sliderheight=h + "px"
//Specify the slider's slide speed (larger is faster 1-10)
var slidespeed=2
//configure background color:
slidebgcolor="#000000"
var h3 = 20;

//Specify the slider's images
var leftrightslide=new Array()
var finalslide='2'
leftrightslide[0]='<img src="0price.png" height="h" border=0></a>'

请帮助

1 个答案:

答案 0 :(得分:0)

您自己遇到了语法错误 - 您没有正确地将变量放入字符串中。试试这个:

leftrightslide[0]='<img src="0price.png" height="'+h+'" border=0></a>';

希望这有帮助。