摘要:
let arr1=[1,2,3,4,5];let arr2=[5,6,7,8,9];//some:一旦有一个值符合要求就返回true let result=arr1.some((item) => arr2.includes(item));console.log(result)//true 阅读全文
摘要:
//background-size 属性规定背景图像的尺寸。 div { background-image: url('img_l.png'); background-size: contain; width: 50px; height: 50px; } //mailto邮箱 <a href="ma 阅读全文