使用变量名称fadeIn和Prepend

时间:2013-08-04 08:47:05

标签: javascript jquery html html5 variables

我想在这个变量“logText”前加上它,并让它同时淡入。

var logText = today + ":" + " " + document.getElementById("textBox").value + '<br>\n';
$("#logContent").prepend(logText);

这是我得到的但它不起作用。

var logText = today + ":" + " " + document.getElementById("textBox").value + '<br>\n';
$("#logContent").prepend($(logText).fadeIn('slow'));

2 个答案:

答案 0 :(得分:2)

$("<p>" + today + ": " + $("#textBox").val() + "</p>")  // new DOM Node
              .css("display", "none")    // hide it
              .prependTo("#logContent")  // prepend it to #logContent
              .fadeIn("slow");           // fade it in slowly

fiddle

答案 1 :(得分:0)

$("#logContent").prepend(today + ": " + $("#textBox").val() + '<br>').fadeIn('slow');