上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 25 下一页
摘要: 阅读全文
posted @ 2023-02-22 14:47 文采呱呱 阅读(9) 评论(0) 推荐(0) 编辑
摘要: public class HelloWorld{ public static void main(String[] args){ System.out.println("HelloWorld"); } } 能修改的地方只有类名称和双括号里面的语句 阅读全文
posted @ 2023-02-22 14:40 文采呱呱 阅读(7) 评论(0) 推荐(0) 编辑
摘要: javaSE: javaME: javaEE: 阅读全文
posted @ 2023-02-22 11:24 文采呱呱 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 按住win+e可以快速进入我的电脑 按住win+r可以快速打开cmd 定时关机:shutdown -s -t 300 取消定时:shutdown -a 阅读全文
posted @ 2023-02-22 11:05 文采呱呱 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 打开看到pages的配置项 在style中去掉原本旧的默认值,加入"navigationStyle": "custom" "style" : { "navigationStyle": "custom" } 阅读全文
posted @ 2023-02-21 11:44 文采呱呱 阅读(21) 评论(0) 推荐(0) 编辑
摘要: let msg = JSON.stringify({ 'ClientName': name, 'City': City, 'ClientAddress': address, 'ClientPhone': iphone, 'HouseNumber': Building, 'CompletionDate 阅读全文
posted @ 2023-02-14 11:43 文采呱呱 阅读(13) 评论(0) 推荐(0) 编辑
摘要: js文件: var base64 = { _keyStr: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=", encode (str) { // 加密 var output = ""; var chr1, chr 阅读全文
posted @ 2023-02-14 11:42 文采呱呱 阅读(236) 评论(0) 推荐(0) 编辑
摘要: `` 新旧两版对比 document.write('模板拼接'+ zzz + '模板拼接') document.write(`模板拼接${zzz}模板拼接`) 实例: let age = 18 document.write(`老夫今年${age}`) 模板字符串内做加减乘除,且可以换行 实例: le 阅读全文
posted @ 2023-02-02 14:39 文采呱呱 阅读(22) 评论(0) 推荐(0) 编辑
摘要: App.vue <keep-alive include="Home"> <router-view /> </keep-alive> router index.js import Vue from 'vue' import VueRouter from 'vue-router' import Home 阅读全文
posted @ 2023-01-03 16:44 文采呱呱 阅读(48) 评论(0) 推荐(0) 编辑
摘要: main.js // 导入安装vant组件库 import Vant from 'vant'; // 为了覆盖默认的less变量,需要把css后缀名改为less import 'vant/lib/index.less'; Vue.use(Vant); vue.config.js const { de 阅读全文
posted @ 2023-01-03 11:43 文采呱呱 阅读(178) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 25 下一页