'''js小知识 js注释 /*多行注释*/ //单行 引入方式 <script src="js路径"></script> <script> window.onload=function(){js} $(document).ready({js}) $(function(){js}) <script> ...
分类:
Web程序 时间:
2021-06-13 09:48:26
阅读次数:
0
function jsons($code, $message = '', $data = array()) { if(!is_numeric($code)) { return ''; } $result = array( 'code' => $code, 'message' => urlencode ...
分类:
Web程序 时间:
2021-06-13 09:22:24
阅读次数:
0
var obj1 = { a: 1, test: function() { return this.a; }, hehe: [1, null, function() { return this.a; }] } var obj2 = JSON.parse(JSON.stringify(obj1)); ...
分类:
Web程序 时间:
2021-06-11 19:08:04
阅读次数:
0
look at me Some common mistakes Don't use localized function names. Only english names (such as SUM, IF, VLOOKUP, etc) are supported. Don't use semico ...
分类:
其他好文 时间:
2021-06-11 18:40:41
阅读次数:
0
ke01开启: nc -lk 8888 Map package com.text.transformation import org.apache.flink.streaming.api.scala.StreamExecutionEnvironment import org.apache.flink ...
分类:
其他好文 时间:
2021-06-11 18:25:57
阅读次数:
0
防抖 function debounce(fun,delay){ let timer = null return function(){ if(timer){ clearTimeout(timer) } timer = setTimeout(()=>{ fun.apply(this,argument ...
分类:
编程语言 时间:
2021-06-11 18:25:11
阅读次数:
0
<script> var resultValue = "1"; function throttle(fn) { console.log(arguments); let params = Array.from(arguments); params.shift(); let res = argument ...
分类:
其他好文 时间:
2021-06-10 18:43:06
阅读次数:
0
HEAD - HTTP | MDN https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Methods/HEAD PATCH - HTTP | MDN https://developer.mozilla.org/zh-CN/docs/Web/HTTP/ ...
分类:
其他好文 时间:
2021-06-10 18:24:20
阅读次数:
0
onMount、onDestroy、beforeUpdate、afterUpdate、tick、挂载算更新 ...
分类:
其他好文 时间:
2021-06-10 18:23:43
阅读次数:
0
浏览器运行js步骤 原仓库 Podium = {}; Podium.keydown = function(k) { var oEvent = document.createEvent('KeyboardEvent'); // Chromium Hack Object.defineProperty(o ...
分类:
其他好文 时间:
2021-06-10 17:56:40
阅读次数:
0