1

我想添加这个变量“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'));
4

2 回答 2

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

小提琴

于 2013-08-04T08:53:09.523 回答
0
$("#logContent").prepend(today + ": " + $("#textBox").val() + '<br>').fadeIn('slow');
于 2013-08-04T08:54:41.503 回答