0

一个非常基本的问题,但我无法让它发挥作用。我有这段代码:

$('.cube').each(function(i) {
    var nleft = $(this).offset().left;   
    var ntop = $(this).offset().top;
    var tbg = $(this).css('backgroundColor');       
    //output
    var cval = $('#output');
    cval.val(cval.val()+'cubes['+i+'].animate({left:'+nleft+',top:'+ntop+',backgroundColor:'+tbg+'});');
});    

它记录了 div 数组的不同属性。问题是背景颜色:

cubes[1].animate({left:200,top:200,backgroundColor: transparent });

这将是日志,正如您所看到的,我可以transparent' '其他地方使用它。就像背景颜色是 a 一样#000,它必须带有字符串标记。

4

1 回答 1

1

只需转义字符串中的 ' 字符,就像这样:

cval.val(cval.val()+'cubes['+i+'].animate({left:'+nleft+',top:'+ntop+',backgroundColor:\''+tbg+'\'});');
于 2013-10-30T13:32:39.440 回答