我的页面上有<a>
个myLink
类。加载DOM时,我想hide
并使用fadeIn
效果。但是,使用下面的代码我看不到任何动画,有什么不对?
$(document).ready(function() {
$('a.myLink').css('display','block')
.html(' ')
.hide()
.fadeIn('slow',function() { $(this).html('lorem'); });
});
答案 0 :(得分:0)
喜欢这样:演示 http://jsfiddle.net/E9uht/1/ 或 http://jsfiddle.net/E9uht/
希望它适合原因:)
如果我遗漏了任何东西,请知道!
<强>码强>
$(document).ready(function() {
$('a.myLink').css('display', 'block')
.html(' ') //<=if you comment me then I will show full link.:)
.hide('slow',function() {
$(this).fadeIn('slow', function() {
$(this).html('lorem');
});
})
});