好吧,我不知道怎么说出这个问题所以让我举个例子。我尝试使用JavaScript为后台位置指定值。我将使用x和y值。如果我想把一个任意的数字,它看起来像。
document.getElementById('background-Container').style.backgroundPosition = "120px 10px";
我的问题是你如何把这些" " (引号)如果我的JavaScript看起来像这样的数字:
var x = 120;
var y = 10;
document.getElementById('background-Container').style.backgroundPosition = x + 'px' + '' + y + 'px';