jquery:将变量添加到变量中

时间:2012-12-19 19:02:11

标签: jquery

如何将变量值添加到新变量中? 我正在修改新闻滑块,我想在字幕中插入“日期”

我尝试了什么:

(function( $ ){
        $.fn.accessNews = function(settings){

                $now = new Date();
                var defaults = {
                        // title for the display
                        title: "news:",
                        // subtitle for the display
                        subtitle: "$now",

1 个答案:

答案 0 :(得分:10)

取消引用它:

{
    // ...

    subtitle: $now,
}