我将底部的jquery放入.js文件中,然后将其导入到html文件中。
然后当我做底部的html代码时 - 没有发生褪色。它只显示了文本:页面上的“测试”。
我还导入了jquery生产js文件。
$(document).ready(function(){
$('#message').fadeIn(5000);
}
);
答案 0 :(得分:3)
你确定你有最初隐藏了id消息的div吗?那么这段代码就可以了。假设jQuery已在您的页面中正确加载。
<强> HTML 强>
<div id="message" style="display:none;">
Message
</div>
<强>的Javascript 强>
$(document).ready(function(){
$('#message').fadeIn(5000);
}
);