一号标题
- ‘#’代表,等同于
<h1></h1>二号标题
- 。。。。。
- ”“代表无无序列表
**段落* 第一次模拟 - blog:@EbBlovery
- github: @EbBlovery
- 采用‘[](#)’的方法来表示
<a href="#">的效果引用
<blockquote>This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
引用类型
代码编写
- JavaScript 代码123456789function Person(name,age){this.name=name;this.age=age}Person.prototype.setSpeak=function(value){alert(value + "world !")}var person1 = new Person(yuan,21)person1.setSpeak(hello)