一個非常基本的問題,但我不能讓它工作。我有這段代碼:添加字符串標記日誌
$('.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
必須處於' '
,我可以在其他地方使用。就像背景顏色是#000
一樣,它必須帶有字符串標記。
更換你有什麼用最後一部分',的backgroundColor:「」 + TBG + '「});'確切地說, – jonhopkins