摘要: import React, { Component } from 'react'; import {Calendar,Tag} from "antd"; import moment from 'moment'; import 'moment/locale/zh-cn'; import './attendanceInfo.css'; moment.locale('zh-cn'); //这里接收考情状 阅读全文
posted @ 2019-08-29 09:48 Jayer 阅读(1770) 评论(0) 推荐(0) 编辑
摘要: 1.若商品价格样式为¥2345.00获取商品价格的正则表达式为 获取结果为 2345 阅读全文
posted @ 2018-05-19 11:26 Jayer 阅读(173) 评论(0) 推荐(0) 编辑
摘要: *好的东西自己保存一下,顺便分享给更多的人 idea和Pycharm (2018 )等系列产品激活激活方法和激活码 https://blog.csdn.net/aglne/article/details/79737749 video视频全屏和退出全屏 https://www.cnblogs.com/ 阅读全文
posted @ 2018-04-10 22:41 Jayer 阅读(131) 评论(0) 推荐(0) 编辑
摘要: /** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import React, { Component } from 'react'; import { Platform, StyleSheet, Text, View, TabBarIOS, St... 阅读全文
posted @ 2018-03-05 15:49 Jayer 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 1.vue安装 1.1、直接<script>标签引入 官网下载地址为:https://cn.vuejs.org/v2/guide/installation.html#AMD-模块加载器 点击开发版本进行下载 1.2、使用CDN方式 BootCDN(国内) : https://cdn.bootcss. 阅读全文
posted @ 2017-11-25 19:43 Jayer 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 1.express.static(root, [options]) express.static 是 Express 内置的唯一一个中间件。是基于 serve-static 开发的,负责托管 Express 应用内的静态资源。 root 参数指的是静态资源文件所在的根目录。 options 对象是可 阅读全文
posted @ 2017-07-18 09:30 Jayer 阅读(229) 评论(0) 推荐(0) 编辑
摘要: css样式分为内联样式、内部样式和外部样式,然而object.style.xxx只能够获取内联样式的属性值,内部样式和外部样式的css样式获取不到 js获取方法使用document.defaultView.getComputedStyle()、currentStyle() 阅读全文
posted @ 2017-04-22 16:42 Jayer 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 准备工作: step1:安装node.js 不清楚的可以访问http://www.cnblogs.com/Jayeblog/p/6667786.html step2:安装Atom 进入官网https://atom.io/安装下载 step3:配置apm环境 找到apm的安装路径,添加进环境变量Pat 阅读全文
posted @ 2017-04-09 13:06 Jayer 阅读(1211) 评论(0) 推荐(0) 编辑
摘要: 1.安装Node.js 进入官网:https://nodejs.org/en/ 下载的是.msi文件,直接双击安装,默认选择即可,安装位置可自选。 在cmd命令行窗口(开始>运行>输入"cmd")中输入node --version,检查是否安装成功,成功会显示安装版本号(下同)。 2.安装git 进 阅读全文
posted @ 2017-04-05 11:00 Jayer 阅读(377) 评论(0) 推荐(0) 编辑