gpt4 book ai didi

javascript - 使用变量名 fadeIn 和 Prepend

转载 作者:行者123 更新时间:2023-11-30 17:56:06 29 4
gpt4 key购买 nike

我想在前面加上这个变量“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'));

最佳答案

$("<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

关于javascript - 使用变量名 fadeIn 和 Prepend,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18041255/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com