摘要:
class Person { constructor(name) { this.name = name } publicFn() { console.log('公共方法') } } class Student extends Person { constructor(name, score) { / 阅读全文
posted @ 2021-08-20 17:37
吴小明-
阅读(80)
评论(0)
推荐(0)
摘要:
dom结构: <h1><b>h1</b></h1> <h2><b>h2</b></h2> <h3><b>h3</b></h3> <h4><b>h4</b></h4> <h5><b>h5</b></h5> <h6><b>h6</b></h6> css: h1 > b, h2 > b, h3 > 阅读全文
posted @ 2021-08-20 11:10
吴小明-
阅读(138)
评论(0)
推荐(0)