-1
내가 문자열의 변수 (JavaScript)를 통합하려면 어떻게해야 :내가 이런 일을하려고하고
var newPositionOnX = 400px;
$(".element").css("transform", "translate(0,newPositionOnX)");
가 감사를!
내가 문자열의 변수 (JavaScript)를 통합하려면 어떻게해야 :내가 이런 일을하려고하고
var newPositionOnX = 400px;
$(".element").css("transform", "translate(0,newPositionOnX)");
가 감사를!
이 시도 :
var newPositionOnX = 400;
$(".element").css("transform", "translate(0, " + newPositionOnX + "px)");
[자바 스크립트에서 보간]의
가능한 중복 (http://stackoverflow.com/questions/6644618/interpolation-in-javascript) – Biffen