上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 98 下一页
摘要: #include<iostream> using namespace std; int dg(int n) { if(n==1 || n==2) return 1; else return dg(n-1)+dg(n-2); } int main() {int n; cout<<"输出菲波那契数第n项 阅读全文
posted @ 2022-09-26 07:59 JackieDYH 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 部分代码(完整包见资源下载链接) 注:资源上传时默认付费,可以私信我,我看到会回复的 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Splitting: 3D Clock</title> <meta nam 阅读全文
posted @ 2022-09-25 12:56 JackieDYH 阅读(18) 评论(0) 推荐(0) 编辑
摘要: //数组排序 初始化 var arr = []; var arr1 = []; var arr2 = []; var arr3 = []; var arr4 = []; for(var i=0 ; i< 20; i++){ arr.push(Math.floor(Math.random()*10)) 阅读全文
posted @ 2022-09-25 11:48 JackieDYH 阅读(1) 评论(0) 推荐(0) 编辑
摘要: vscode常用插件 ESLint js - 代码校验 Prettier - 代码格式统一 Vetur - 语法高亮、智能感知、Emmet CSS Peek - 显示css样式 Turbo Console Log - 一键打印log C+A+L A+S+C/U/D code Runner 快速运行j 阅读全文
posted @ 2022-09-23 17:30 JackieDYH 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1.jQuery ajax $.ajax({ type: 'POST', url: url, data: data, dataType: dataType, success: function () {}, error: function () {} }); 传统 Ajax 指的是 XMLHttpR 阅读全文
posted @ 2022-09-22 15:04 JackieDYH 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1. 初始化项目 // ① npm i -g @vue/cli // ② vue create my-project // ③ npm install @vue/composition-api -S // ④ main,js import Vue from 'vue' import VueCompo 阅读全文
posted @ 2022-09-20 09:28 JackieDYH 阅读(6) 评论(0) 推荐(0) 编辑
摘要: ES2020中Javascript10个新特性 1、BigInt BigInt,Javascript 中最期待的新功能终于落地。它允许开发者在 JS 中使用更大的整数进行数据处理。之前,Javascript 中最大的整数是 pow(2, 53) - 1。但是,BigInt 不受此限制。 然而,就如你 阅读全文
posted @ 2022-09-19 11:44 JackieDYH 阅读(46) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript"> window.onload = function(){ var pt1 = document.ge 阅读全文
posted @ 2022-09-16 08:41 JackieDYH 阅读(6) 评论(0) 推荐(0) 编辑
摘要: vue-router原理剖析, 一边讲解原理一边自己实现.看完绝对能让大家有所收获 我们正常使用router, 是在router.js里配置options, 并抛出Router实例 import Vue from 'vue' import Router from 'vue-router' // 引入 阅读全文
posted @ 2022-09-12 16:04 JackieDYH 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 什么是 Cookie? Cookie 是一些数据, 存储于你电脑上的文本文件中。 当 web 服务器向浏览器发送 web 页面时,在连接关闭后,服务端不会记录用户的信息。 Cookie 的作用就是用于解决 "如何记录客户端的用户信息": 当用户访问 web 页面时,他的名字可以记录在 cookie 阅读全文
posted @ 2022-09-11 02:01 JackieDYH 阅读(12) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 98 下一页