Blogger Information
Blog 45
fans 2
comment 1
visits 26353
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
2018年4月3日17:15分
哈的博客
Original
572 people have browsed it

总结:

现在已经学习了HTML。css。JavaScript,还有就是jQuery了感觉最难的就是JavaScript了,要多话点时间去学习。jQuery的引入简单明了,还可以引用css的知识,感觉还不错,JavaScript的window.onload是等页面加载完成以后自动调用的事件。而jQuery中的$(document).ready,只要dom结构生产就会触发,用得比较多

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
	.horiz{
		text-align: center;
		color: #333;
		list-style-type: none;
		line-height: 1.5px;
		margin:10px;
	}
	</style>

	<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
    <script type="text/javascript">
    //$('one > li ').addClass('horiz') 这样式不行的
    window.onload = function () {
    	$('one > li ').addClass('horiz')
    }
    //window.onload是等页面加载完成以后自动调用的事件
    

    /*$(document).ready(function(){
    	$('one > li ').addClass('horiz')

    }
    )*/

    //简写
    $(function(){
    	$('one > li ').addClass('horiz')

    }
    )

    //页面的渲染顺序
    //1先加载dom结构
    //2加载图片
    //$(document).ready,只要dom结构生产就会触发
    </script>
</head>
<body>
	<h2>购物</h2>
	<ul id="one">
	<li>淘宝
	<ul>
	<li>鞋子</li>
	<li>衣服</li>
	</ul>
	</li>
	<li>京东
	<ul>
	<li>电器</li>
	<li>手机</li>
	</ul>
	</li>
	<li>拼多多
	<ul>
	<li>包包</li>
	<li>袜子</li>
	</ul>
	</li>
	</li>
	</ul>

	<p>自从有了网购以后,已经很少人到实体店买东西了</p>
	<p>实体店已经越来越难做了</p>
</body>
</html>

<!--<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript">
$('<img src="./1.jpg" width="150"').insertAfter('h2').css('border-radius','50%')//导入图片
$('p+p').html('哈哈哈')//切换p的文本
$('one > li ').addClass('horiz')//添加样式

</script>-->

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post