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
1 Answer
Reset to default 8I'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
版权声明:本文标题:webkit - How to set a dynamic string value using Javascript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742135262a2422340.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论