我正在使用此代码使用jQuery附加一些代码,但它不起作用。
$('#'+DivId).append($(maincontent).fadeIn('slow'));
但如果我使用它,那么它可以完美地运作
$('#'+DivId).html(maincontent);
有人知道append()
有什么问题吗?
由于
答案 0 :(得分:1)
使用此
$("#your_div").fadeIn('slow');
$('#'+DivId).append(maincontent);
答案 1 :(得分:0)
您的代码应该可以正常运行。您可能需要在$(document).ready
函数内运行:
$(document).ready(function() {
var maincontent = "<p>Just some text to test...</p>";
$("#test").append($(maincontent).fadeIn('slow'));
});
您可以看到上面的代码正在运行here。