事件 页面载入 ready(fn) //当DOM载入就绪可以查询及操纵时绑定一个要执行的函数。 $(document).ready(function(){}) > $(function(){}) 事件处理 $("").on(eve,[selector],[data],fn) // 在选择元素上绑定一 ...
分类:
Web程序 时间:
2021-07-26 16:57:01
阅读次数:
0
操作元素(属性) 属性操作 ''' 属性 $("").attr(); $("").removeAttr(); $("").prop(); $("").removeProp(); CSS类 $("").addClass(class|fn) $("").removeClass([class|fn]) H ...
分类:
Web程序 时间:
2021-07-22 17:38:07
阅读次数:
0
use crossbeam_channel::{Receiver, bounded}; use tokio::time::{Duration, delay_for}; #[tokio::main] async fn main() { let (s, r) = bounded(10); for i i ...
分类:
其他好文 时间:
2021-07-19 16:57:38
阅读次数:
0
1.普通函数this指向window; function fn() { console.log('普通函数的this' + this); } window.fn(); 2.对象的方法 this指向调用者O var o={ sayHi:function(){ console.log('对象方法的thi ...
分类:
其他好文 时间:
2021-06-29 15:30:45
阅读次数:
0
1. 原理: 递归:函数自己调用自己 1 function fn() { 2 fn(); 3 } 4 fn();//会导致栈溢出 1 function fn() { 2 setTimeout(fn,0); 3 } 4 fn();//不会导致栈溢出 2. 代码实现: 3.时间复杂度: 空间复杂度: ...
分类:
编程语言 时间:
2021-06-28 19:12:32
阅读次数:
0
一个对象会有不同的状态,不同的操作会影响状态,同时状态改变,也会影响对象和业务流程。例如,薛定谔的猫有3种状态:生、死、不确定,假设3种状态可转换. 名称为CatState的trait描述了对猫的所有状态操作: trait CatState { fn make_live(self: Box<Self ...
分类:
数据库 时间:
2021-06-28 18:49:22
阅读次数:
0
打开题目 是一串代码 1 <?php 2 extract($_GET); 3 if (!empty($ac)) 4 { 5 $f = trim(file_get_contents($fn)); 6 if ($ac $f) 7 { 8 echo "<p>This is flag:" ." $flag< ...
分类:
其他好文 时间:
2021-06-17 16:32:24
阅读次数:
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
<div v-mydirect:fn="item"></div> Vue.directive('mydirect', { bind (el, binding,vnode) { let that = vnode.context that[binding.arg](binding.value) } }) ...
分类:
其他好文 时间:
2021-06-10 17:34:26
阅读次数:
0
方法1,使用闭包 let arr = [] function fn(){ let arg = [...arguments] // 用另一个变量表示外部函数的实参 function closure(){ // 使用闭包将变量持久化 arr = [...arr,...arg] } closure() r ...
分类:
其他好文 时间:
2021-06-08 23:38:44
阅读次数:
0