- 博客(3)
- 收藏
- 关注
原创 Vue简单实现一个记事本
Vue简单实现一个记事本直接上代码:网页结构<template> <div> <div class="note"> <h1>晓亦记事本</h1> <div class="main"> <input type="text" autofocus="autofocus" placeholder="今日心情~" v-model="news" @keyup.enter="publis
2020-05-16 00:45:57 1250
原创 JS中的原型链(方法继承)
Document<script> // 自己写通过原型对象实现方法继承 // Person 构造函数 function Person(name,age){ this.name = name; this.age = age; } Person.prototype.run ...
2020-02-13 07:57:37 383
原创 JQ的绑定事件
JQ的绑定事件 Document <script src="./libs/jquery-1.12.4.js"></script><script> // $('.box').on('mouseenter',function() { // console.log('鼠标移入...
2020-02-10 11:26:42 114
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人