对象声明语法
?实际开发中,我们多用花括号。 {} 是对象字面量
属性:信息或叫特征(名词)。 比如 手机尺寸、颜色、重量等…
方法:功能或叫行为(动词)。 比如 手机打电话、发短信、玩游戏…
总结:
- 声明对象,并添加了若干属性后,可以使用 . 获得对象中属性对应的值,我称之为属性访问。
- 语法:对象名.属性
- ?简单理解就是获得对象里面的属性值。
属性-查的另外一种写法
?注意:这种方式一般使用在for( let k in obj) 的这种遍历对象属性的时候使用
?改和增语法一样,判断标准就是对象有没有这个属性,没有就是新增,有就是改
?for 遍历对象的问题:
?1. 遍历对象用那个语句?
- for in
2. 遍历对象中, for k in obj,获得对象属性是那个,获得值是那个?
- 获得对象属性是 k
- 获得对象值是 obj[k]
1 JavaScript内部提供的对象,包含各种属性和方法给开发者调用
2? 思考:我们之前用过内置对象吗?
- random:生成0-1之间的随机数(包含0不包括1)
- ceil:向上取整
- floor:向下取整
- max:找最大数
- min:找最小数
- pow:幂运算
- abs:绝对值
Math.floor(Math.random() * (10 + 1))
Math.floor(Math.random() * (5 + 1)) + 5
Math.floor(Math.random() * (M - N + 1)) + N
要求:从数组中随机抽取一个人物,并将其从数组中删除
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
//要求:从数组中随机抽取一个人物,并将其从数组中删除
let arr = ['李白','张飞','刘备','关羽','曹操']
let random = Math.floor(Math.random()*arr.length)
console.log(arr[random])
arr.splice(random,1)
console.log(arr)
</script>
</body>
</html>
要求:编写一个函数,有一个参数flag,如果flag=true,则返回#ffffff形式,如果为false返回rgb(255,255,255)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
function getRandomColor(flag = true){
//如果flag=true 则返回#ffffff形式的
if(flag){
let arr = ['1','2','3','4','5','6','7','8','9','a','b','c','d','e','f']
let result ='#'
for(let i = 1;i<=6;i++){
let random = Math.floor(Math.random()*arr.length)
result+=arr[random]
}
return result
}else{
//如果flag=false 则返回rag(255,255,255)形式的
let r = Math.floor(Math.random()*256)
let g = Math.floor(Math.random()*256)
let b = Math.floor(Math.random()*256)
return `rgb(${r},${g},${b})`
}
}
console.log(getRandomColor(false));
console.log(getRandomColor(true));
</script>
</body>
</html>
要求:使用for遍历信息
?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
table {
width: 600px;
text-align: center;
}
table,
th,
td {
border: 1px solid #ccc;
border-collapse: collapse;
}
caption {
font-size: 18px;
margin-bottom: 10px;
font-weight: 700;
}
tr {
height: 40px;
cursor: pointer;
}
table tr:nth-child(1) {
background-color: #ddd;
}
table tr:not(:first-child):hover {
background-color: #eee;
}
</style>
</head>
<body>
<h2>学生信息</h2>
<p>将数据渲染到页面中...</p>
<table>
<caption>学生列表</caption>
<tr>
<th>序号</th>
<th>姓名</th>
<th>年龄</th>
<th>性别</th>
<th>家乡</th>
</tr>
<script>
// 1. 数据准备
let students = [
{ name: '小明', age: 18, gender: '男', hometown: '河北省' },
{ name: '小红', age: 19, gender: '女', hometown: '河南省' },
{ name: '小刚', age: 17, gender: '男', hometown: '山西省' },
{ name: '小丽', age: 18, gender: '女', hometown: '山东省' },
{ name: '晓强', age: 16, gender: '女', hometown: '蓝翔技校' }
]
//2 遍历数组数据
for(let i = 0;i<students.length;i++){
document.write(`
<tr>
<td>${i+1}</td>
<td>${students[i].name}</td>
<td>${students[i].age}</td>
<td>${students[i].gender}</td>
<td>${students[i].hometown}</td>
</tr>
`)
}
</script>
</table>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.main {
width: 800px;
height: 500px;
clear: both;
background-color: black;
margin: 0 auto;
}
.main .img {
position: relative;
float: left;
width: 100px;
height: 100px;
padding: 2px;
margin: 5px;
transition: all 1s;
}
.main .img:hover span {
display: block;
}
.main .img:hover{
transform: scale(1.3);
z-index: 999;
}
.img img {
position: absolute;
width: 100%;
height: 100%;
}
.img span {
position: absolute;
right: 0;
bottom: 5px;
height: 30px;
width: 60px;
line-height: 30px;
text-align: center;
display: none;
background-color: #fff;
}
</style>
</head>
<body>
<div class="main">
<script>
let datas = [
{ name: '司马懿', imgSrc: '01.jpg' },
{ name: '女娲', imgSrc: '02.jpg' },
{ name: '百里守约', imgSrc: '03.jpg' },
{ name: '亚瑟', imgSrc: '04.jpg' },
{ name: '虞姬', imgSrc: '05.jpg' },
{ name: '张良', imgSrc: '06.jpg' },
{ name: '安其拉', imgSrc: '07.jpg' },
{ name: '李白', imgSrc: '08.jpg' },
{ name: '阿珂', imgSrc: '09.jpg' },
{ name: '墨子', imgSrc: '10.jpg' },
{ name: '鲁班', imgSrc: '11.jpg' },
{ name: '嬴政', imgSrc: '12.jpg' },
{ name: '孙膑', imgSrc: '13.jpg' },
{ name: '周瑜', imgSrc: '14.jpg' },
{ name: 'XXX', imgSrc: '15.jpg' },
{ name: 'XXX', imgSrc: '16.jpg' },
{ name: 'XXX', imgSrc: '17.jpg' },
{ name: 'XXX', imgSrc: '18.jpg' },
{ name: 'XXX', imgSrc: '19.jpg' },
{ name: 'XXX', imgSrc: '20.jpg' }
]
for(let i = 0;i<datas.length;i++){
document.write(`
<div class="img">
<img src="./uploads/heros/${datas[i].imgSrc}" alt="">
<span>${datas[i].name}</span>
</div>
`)
}
</script>
<!-- <div class="img">
<img src="./uploads/heros/01.jpg" alt="">
</div> -->
</div>
</body>
</html>