上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 36 下一页
摘要: const nums=[1,3,5,11] let [a,b]=nums const user={name:"howhy",age:22} let {name,age}=user let arr1=[1,3,5] let arr2=[...arr1,2,4,6] 阅读全文
posted @ 2021-03-01 16:39 howhy 阅读(42) 评论(0) 推荐(0) 编辑
摘要: npm node package manager 安装nodejs时自带的 npm help install(list) npm config get|set registry npm install jquery@3.0.0 -g npm update jquery npm list -g npm 阅读全文
posted @ 2021-02-26 15:12 howhy 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 规范url:https://standardjs.com/readme-zhcn.html 定义变量 等号两边有空格 定义变量和方法必须使用 定义方法 方法名与括号 括号与大括号中间都要有空格 定义字符串用单引号 关键字 if 与括号间要有空格 用 代替== 逗号后台要有空格 不允许有多行空行 阅读全文
posted @ 2021-01-06 18:23 howhy 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1、首先下载 https://developer.android.google.cn/studio?hl=zh_cn wget https://dl.google.com/android/repository/commandlinetools-linux-6609375_latest.zip?hl= 阅读全文
posted @ 2020-08-03 11:15 howhy 阅读(1480) 评论(0) 推荐(0) 编辑
摘要: package com.example.appdemoimport android.app.ActionBarimport android.content.Intentimport android.graphics.Colorimport androidx.appcompat.app.AppComp 阅读全文
posted @ 2020-07-15 16:08 howhy 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 将pip源更换到国内镜像用pip管理工具安装库文件时,默认使用国外的源文件,因此在国内的下载速度会比较慢,可能只有50KB/s。幸好,国内的一些顶级科研机构已经给我们准备好了各种镜像,下载速度可达2MB/s。其中,比较常用的国内镜像包括: (1)阿里云 http://mirrors.aliyun.c 阅读全文
posted @ 2020-06-18 13:45 howhy 阅读(1553) 评论(0) 推荐(0) 编辑
摘要: 类选择器 id选择器 元素选择器 伪类选择器 属性选择器 结构性选择器 逗号分隔的是或选择 空格分隔的是 层级选择 >分隔是父子级 + 紧挨着下个的兄弟元素 属性选择器 *[attr] 选择包含有attr属性的所有元素 [attr='val'] 选择包含有attr属性并且其属性值为val的所有元素  阅读全文
posted @ 2019-11-05 09:48 howhy 阅读(93) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>< 阅读全文
posted @ 2019-10-12 11:57 howhy 阅读(288) 评论(0) 推荐(0) 编辑
摘要: import os import sys import time import tornado.httpserver import tornado.ioloop import tornado.options import tornado.web import tornado.gen from tornado.concurrent import run_on_executor from con... 阅读全文
posted @ 2018-09-11 15:14 howhy 阅读(809) 评论(0) 推荐(0) 编辑
摘要: node是js运行环境 事件驱动型 异步非阻塞的 阅读全文
posted @ 2018-09-04 09:59 howhy 阅读(160) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 36 下一页