jquery动态内容如何实现淡入淡出
2 回答
红颜莎娜
TA贡献1842条经验 获得超12个赞
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script class="jquery library" src="/js/sandbox/jquery/jquery-1.8.2.min.js" type="text/javascript"></script>
<title>
RunJS 演示代码
</title>
<script>
jQuery(function($){
$("#id").html($("<div>内容</div>").fadeIn(3000));
});
</script>
</head>
<body>
<div id="id">
ss
</div>
</body>
</html>
- 2 回答
- 0 关注
- 611 浏览
添加回答
举报
0/150
提交
取消