admin管理员组

文章数量:1323342

I have this code but since I use "" the a.innerheight does not get replaced by its value. Is it possible to make this dynamic?

a.style.webkitTransform = "translate(0,a.innerHeight)"

I have this code but since I use "" the a.innerheight does not get replaced by its value. Is it possible to make this dynamic?

a.style.webkitTransform = "translate(0,a.innerHeight)"
Share Improve this question edited Jun 6, 2014 at 22:30 Factor Mystic 26.8k16 gold badges81 silver badges96 bronze badges asked Apr 27, 2009 at 20:21 ChristopherChristopher
Add a ment  | 

1 Answer 1

Reset to default 8

I'm not sure what you're asking for... this maybe?

a.style.webkitTransform = "translate(0," + a.innerHeight + ")";

本文标签: webkitHow to set a dynamic string value using JavascriptStack Overflow