// 第一种写法 $(document).ready(function() { }); // 第二种写法 $().ready(function() { }); // 第三种写法 $(function() { }); jQuery入口函数与window.onload的对比 JavaScript的入口函 ...
分类:
其他好文 时间:
2021-03-01 13:46:55
阅读次数:
0
侦测变化 - watch Watch 文档地址 // watch 简单应用 watch(data, () => { document.title = 'updated ' + data.count }) // watch 的两个参数,代表新的值和旧的值 watch(refData.count, (n ...
分类:
其他好文 时间:
2021-02-27 13:06:52
阅读次数:
0
一 键盘事件 1)常用的三个 //1 onkeyup 按键弹起时触发 document.onkeyup = function () { console.log('弹起时才触发'); } //2 onkeydown 按键按下的时候触发 document.onkeydown = function () ...
分类:
其他好文 时间:
2021-02-26 13:13:55
阅读次数:
0
JAVA安全编码规范 1、安全编码基本原则 1.1 所有输入数据都是有害的 直接输入数据: 对于用户通过 GET, POST, COOKIE, REQUEST等输入的数据以及框架提供的数据来源,即通信协议中从客户端传过来的一切变量,无论是用户手动填写的数据或是客户端浏览器或操作系统自动填写的数据,都 ...
分类:
编程语言 时间:
2021-02-25 12:22:03
阅读次数:
0
var allEle = document.getElementsByTagName('*'); console.log(allEle) for(var i=0;i<allEle.length;i++){ if(allEle[i].nodeName=="INPUT"){ // $(allEle[i] ...
分类:
编程语言 时间:
2021-02-25 11:45:18
阅读次数:
0
var img = "imgurl";//imgurl 就是你的图片路径 function getBase64Image(img) { var canvas = document.createElement("canvas"); canvas.width = img.width; canvas.he ...
分类:
Web程序 时间:
2021-02-25 11:44:24
阅读次数:
0
This article is the continuation of our ongoing series about Linux Top Tools, in this series we will introduce you most famous open source tools for L ...
分类:
系统相关 时间:
2021-02-24 13:22:40
阅读次数:
0
键盘事件比较特殊,它只能被 能够获取焦点 的元素 触发。 哪些是能获取焦点的元素呢?表单控件和document 如何获取按下的是哪个键?利用键盘事件的keyCode属性, documnet.event.keyCode,keyCode为键盘按键对应的ASCII码 其中,shift、Ctrl、alt功能 ...
分类:
其他好文 时间:
2021-02-24 13:16:34
阅读次数:
0
1.自定一个注解 package com.hc.manager.common.aop.annotation;import java.lang.annotation.*;/** * LogAnnotation * * @author summer.chou * @version V1.0 * @dat ...
分类:
编程语言 时间:
2021-02-24 13:08:30
阅读次数:
0
0.介绍 Open-source job scheduling system for .NET Quartz.net 是调度任务框架,我们可以用来定时发送邮件、定时处理邮件、定时统计分析数据、定时监控... 本文介绍Quartz.net的简单使用 1. 参考资料 官方Doc https://www. ...
分类:
Web程序 时间:
2021-02-23 14:35:15
阅读次数:
0