Blogger Information
Blog 32
fans 0
comment 0
visits 21391
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
4月2日作业
inhylei
Original
663 people have browsed it

代码

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
ul {
list-style: none;

overflow: hidden;
        
}
li {
background-color: skyblue;
float: left;
border-radius: 50%;
width: 40px;
line-height: 40px;
text-align: center;
margin: 10px;
box-shadow: 4px 4px 4px #ccc;
font-weight: 600;
color: #fff;
}
</style>
<!-- $(document).ready() 标准方式-->
<script type="text/javascript" src="/180402/js/jquery-3.3.1.js"></script>
<script type="text/javascript">
$(document).ready(
function(){
$('button').click(function(){
$('p').html('php')
})
})
</script>

<!-- $(document).ready() 简写方式

<script type="text/javascript">


$(function(){
$('button').click(function(){
$('p').html('php')
})
})
</script> -->
</head>
<body>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>10</li>
</ul>

     <hr>
<h2> this is a heading</h2>
<p>this is a paragraph</p>
<p>this is anther paragraph</p>
<button type="button">请点击这里</button>

</body>
<!-- 第一种方式引入jQuery
<script type="text/javascript" src="/180402/js/jquery-3.3.1.js"></script> -->



<!-- 第二种方式引入jQuery -->
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.js"></script> 
<script type="text/javascript">
$('li:nth-child(4)~*').css('background-color','green')
</script>


</html>


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