码迷,mamicode.com
首页 >  
搜索关键字:extented events    ( 2220个结果
07_事件的监听
var http = require('http'); // 引入 events 模块 var events = require('events'); var server = http.createServer(); server.on('request',function (req,res) { ...
分类:其他好文   时间:2020-07-09 20:50:45    阅读次数:65
在IBM AIX上安装Oracle RAC ,很多人都在找的东东.....
在IBM AIX上安装Oracle RAC ,很多人都在找的东东..... 分类: 2006-04-21 00:16:43 在IBM AIX上安装Oracle RAC (RS/6000) 目的 此文档向读者提供如何安装一个群集,安装RAC,并在IBM AIX HACMP/ES (CRM) 4.4.x ...
分类:数据库   时间:2020-07-07 09:21:15    阅读次数:97
ABP VS调试异常
原文:https://www.cnblogs.com/jiangchengbiao/p/9713020.html 在Application层,添加如下代码即可 using Abp.Dependency; using Abp.Events.Bus.Exceptions; using Abp.Event ...
分类:其他好文   时间:2020-07-06 18:12:49    阅读次数:55
jquery的bind跟on绑定事件的区别
jquery的bind跟on绑定事件的区别 jquery的bind跟on绑定事件的区别:主要是事件冒泡; jquery文档中bind和on函数绑定事件的用法: .bind(events [,eventData], handler) .on(events [,selector] [,data], ha ...
分类:Web程序   时间:2020-07-06 16:21:06    阅读次数:49
Pointer Event Api-整合鼠标事件、触摸和触控笔事件
Pointer Events API 是Hmtl5的事件规范之一,它主要目的是用来将鼠标(Mouse)、触摸(touch)和触控笔(pen)三种事件整合为统一的API。 Pointer Event Pointer指可以在屏幕上反馈一个指定坐标的输入设备。Pointer Event事件和Touch E ...
分类:Windows程序   时间:2020-07-05 20:57:37    阅读次数:98
nginx配置 - 反向代理,转发配置
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev ...
分类:其他好文   时间:2020-07-04 10:31:41    阅读次数:106
循环序列模型-week1编程题2(字符级语言模型-恐龙岛)
任务:构建字符级语言模型来生成新的名称 1.数据集与预处理 读取恐龙名称的数据集,创建一个唯一字符列表(a-z和\n),\n充当EOS名称结束的作用。 1 import numpy as np 2 import random 3 import time 4 import cllm_utils 5 6 ...
分类:编程语言   时间:2020-07-03 17:42:05    阅读次数:120
前端下载后台传入的pdf base64格式的文件
1、下载文件封装downloadFile.js // 图片转blob function imgURLtoBlob(dataurl) { const arr = dataurl.split(',') const mime = arr[0].match(/:(.*?);/)[1] const bstr ...
分类:其他好文   时间:2020-07-01 13:03:35    阅读次数:127
光标离开事件
<input id="sjmc" class="easyui-combobox" data-bind="easyuiValue:SR_BUSINESS.SJMC" data-options="events:{blur: function(){ alert('提示') }}" /> <input id ...
分类:其他好文   时间:2020-06-30 10:31:05    阅读次数:92
发布订阅模式
let fs = require('fs'); // 发布订阅 发布和订阅没关系 中间通过数组进行关联 function Events() { this.callbacks = []; this.results = []; } // 订阅 Events.prototype.on = function ...
分类:其他好文   时间:2020-06-27 11:28:26    阅读次数:48
2220条   上一页 1 ... 5 6 7 8 9 ... 222 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!