1

我有这个代码。在“内容”部分,我希望显示一个变量 - currentCard。

这是代码。任何帮助深表感谢!

 $("#middle").flip({
    direction:'rl',
    content:'currentCard',
    color:'#fff'
})
4

2 回答 2

1

奇怪的是,没有引号不适合你,试试这个代码:

var currentCard = "card123";
console.log(currentCard);

$("#middle").flip({
    direction:'rl',
    content:currentCard,
    color:'#fff'
})

要查看控制台输出,请使用浏览器或 Firebug 的开发人员工具。

如果此代码适用于“cart123”,请删除定义 currentCard 的行并保留控制台打印以确保此变量的值是您认为的值。

于 2013-02-17T15:02:41.953 回答
1

你的代码不应该说:

$("#content").flip({  //changed to 'content' from 'middle'
direction:'rl',
content:currentCard, //remove the quotes, because with the quotes, it'll anyway never get the value of the variable.
color:'#fff'
});
于 2013-02-17T15:02:51.923 回答