我正在尝试淡入 jQuery 中的一个元素,尽管它很简单,但它对我不起作用。这是代码:
<table><tr><td>Blah</td></tr></table>
$(document).ready(function () {
$("table").css('color','green');
$("table").fadeIn(2000);
});
这是 jsFiddle 中的一个示例:http: //jsfiddle.net/heUkN/1/
我正在尝试淡入 jQuery 中的一个元素,尽管它很简单,但它对我不起作用。这是代码:
<table><tr><td>Blah</td></tr></table>
$(document).ready(function () {
$("table").css('color','green');
$("table").fadeIn(2000);
});
这是 jsFiddle 中的一个示例:http: //jsfiddle.net/heUkN/1/
你必须hide()
先fadeIn()
试试这个:
$(document).ready(function () {
$("table").css('color','green').hide().fadeIn(2000);
});
您的代码是正确的,只是为了首先看到 fadeIn() 效果,或者像这样隐藏它..
$(document).ready(function () {
$("table").fadeOut();
$("table").css('color','green');
$("table").fadeIn(2000);
});