码迷,mamicode.com
首页 >  
搜索关键字:event    ( 11031个结果
观察者模式
观察者模式是js中的一个很重要的概念,我们新手总觉得很难理解(我想很多老手也不一定很理解吧,那我们就来写一个最简单的观察者模式吧,重点是让大家理解它的运作) // 观察者模式 var obj = {}; obj.events = {}; obj.on = function (event, handl ...
分类:其他好文   时间:2021-07-05 16:50:37    阅读次数:0
C# 通过委托,事件窗口传值
Form2 namespace WindowsFormsApp1 { //定义委托 public delegate void Sum(int x, int y); public partial class Form2 : Form { //定义事件 public event Sum sum; pub ...
分类:Windows程序   时间:2021-07-05 16:39:05    阅读次数:0
mysql 查看所有触发器
select trigger_name as '名称' ,event_object_schema as'所属库',event_object_table as'所属表',event_manipulation as '触发事件',action_timing as '触发??器时机',action_sta ...
分类:数据库   时间:2021-07-02 16:12:53    阅读次数:0
Vue3.0 declare it using the "emits" option警告
vue3.0子组件 emit 出现警告 Extraneous non-emits event listeners (okUploadImg) were passed to component but could not be automatically inherited because compo ...
分类:其他好文   时间:2021-07-01 17:06:29    阅读次数:0
interactive-slam-Example3
Example3 koide3 edited this page on 18 Mar 2020 · 17 revisions In this example, we correct a largely bent map with loop closing, edge refinement, and ...
分类:其他好文   时间:2021-06-30 18:35:10    阅读次数:0
微信小程序中如何识别银行卡和身份证
识别银行卡云函数card2/index.js: const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV, }) exports.main = async (event, context) = ...
分类:微信   时间:2021-06-28 20:21:21    阅读次数:0
Unity 不规则按钮实现
1.先重写Image类,实现对Image图形范围的重写; 2.对不规则按钮添加Polygon Collider2D组件,调整大小圈中要点击的范围; 3.将重写的Image类添加到不规则按钮上时,需要移除不规则按钮上原来的Image组件,因为这个是继承Image,一个物体上不能同时有两个Image组件 ...
分类:编程语言   时间:2021-06-28 20:15:51    阅读次数:0
【图像分割】基于GUI类间方差阈值图像分割【含Matlab源码 583期】
一、简介 1 概述 在计算机视觉和图像处理领域,最大类间方差法(otsu)又叫做大津法,是1979年由日本学者大津提出的,是一种自适应阈值分割方法,减少灰阶图像等级成为一个二值图像。该算法假定图像分为两类(符合双峰直方图分布,两类分别称为前景/目标像素和背景像素),然后计算出一个最优的阈值将将此图像 ...
分类:其他好文   时间:2021-06-28 18:00:29    阅读次数:0
How to Enable VNCR on RAC Database to Register only Local Instances (Doc ID 1914282.1)
VNCR is supported for the cluster. Use MOS note 1914282.1 to ensure you've done all the required steps How to Enable VNCR on RAC Database to Register ...
分类:数据库   时间:2021-06-28 17:54:34    阅读次数:0
禁止鼠标右键菜单(contextmenu) 与 禁止选中文字(selectstart)
//1.contextmenu 禁止鼠标右键菜单 document.addEventListener('contextmenu',function(e){ e.preventDefault(); }); //2.禁止选中文字 selectstart document.addEventListener ...
分类:其他好文   时间:2021-06-25 16:33:50    阅读次数:0
11031条   1 2 3 4 ... 1104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!