上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页
摘要: 效果图 index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>index</title> <link rel="stylesheet" href="https://apps.bdimg.com 阅读全文
posted @ 2020-05-08 14:23 陈莺莺呀 阅读(865) 评论(3) 推荐(0) 编辑
摘要: 效果图 index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>index</title> <link rel="stylesheet" href="css/style.css"> <scrip 阅读全文
posted @ 2020-05-08 13:52 陈莺莺呀 阅读(338) 评论(0) 推荐(1) 编辑
摘要: 效果图 index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>index</title> <link rel="stylesheet" href="css/style.css"> </head 阅读全文
posted @ 2020-05-08 10:11 陈莺莺呀 阅读(840) 评论(0) 推荐(0) 编辑
摘要: 效果图 index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>index</title> <link rel="stylesheet" href="css/style.css"> <link 阅读全文
posted @ 2020-05-08 09:38 陈莺莺呀 阅读(1692) 评论(0) 推荐(0) 编辑
摘要: 继续上一篇 https://www.cnblogs.com/chenyingying0/p/12798050.html 安装一些组件 cnpm i postcss-loader autoprefixer babel-loader babel-core 提示缺少依赖,安装便是 cnpm i @babe 阅读全文
posted @ 2020-04-29 21:52 陈莺莺呀 阅读(819) 评论(0) 推荐(0) 编辑
摘要: 1、如果之前有全局安装过vue-2,先卸载掉 cnpm uni -g vue-cli 2、安装vue-cli3 cnpm install -g @vue/cli 3、可以使用vue ui 进入图形界面创建项目 4、也可以使用命令行进行创建 阅读全文
posted @ 2020-04-25 17:35 陈莺莺呀 阅读(820) 评论(0) 推荐(0) 编辑
摘要: 1、进入项目目录 2、保证npm和vue已经安装 npm -v 查看npm是否安装 vue -V 查看vue是否安装 3、npm install 安装依赖 4、npm run dev 【vue是向下兼容的,可以导入不高于当前vue版本的项目】 阅读全文
posted @ 2020-04-24 22:25 陈莺莺呀 阅读(3409) 评论(0) 推荐(0) 编辑
摘要: vue地址栏#长这样 地址栏中,经常出现#,是什么作用,能不能去掉? 地址栏有两种模式: hash模式:地址栏包含#,#之后的不被获取 history模式:具有对url历史进行修改的功能 在微信支付,分享url作为参数传递时,url不能满足需求,因此在实际项目中,一般是修改为history模式 hi 阅读全文
posted @ 2020-04-24 22:08 陈莺莺呀 阅读(3758) 评论(1) 推荐(0) 编辑
摘要: 从基础知识到JSWebAPI: DOM操作 BOM操作 事件绑定 AJAX请求(包含http协议) 存储 DOM可以理解为:浏览器把拿到的html代码,结构化成一个浏览器能识别并且js可操作的一个模型 DOM节点操作: <!DOCTYPE html> <html lang="en"> <head> 阅读全文
posted @ 2020-04-20 22:56 陈莺莺呀 阅读(1575) 评论(1) 推荐(0) 编辑
摘要: 什么是异步? <script> //异步 console.log(1); setTimeout(function(){ alert(2); },1000); console.log(3); //同步,存在阻塞 console.log(1); alert(2);//不点击确定,不会打印3 consol 阅读全文
posted @ 2020-04-19 22:46 陈莺莺呀 阅读(304) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页