EventUtil原生事件工具

2021-08-04 22:07:05 字數 653 閱讀 3430

var eventutil=else

if(element.attachevent)else

},//刪除事件

removehandler:function(element,type,handler)else

if(element.detachevent)else

},//返回event物件的引用

getevent:function(event)

//返回事件的目標

gettarget:function(event),

//取消事件的預設行為

preventdefault:function(event)else

},//阻止事件流

stoppropagation:function(event)else

},//取得字元編碼

getcharcode:function(event)else

},//獲取剪下板中的值

getclipboardtext:function(event),

//設定剪下板中的值

setclipboardtext:function(event,value)else

if(window.clipboarddata)

}}

Vue native繫結原生事件

首先介紹一下是什麼意思 意思就是當你給乙個vue元件繫結事件時候,要加上native!如果是普通的html元素!就不需要 div id my component click i said my component div vue.component my component new vue 這樣在元...

給元件繫結原生事件

元件上繫結原生事件 1.在父元件繫結事件 click.native handle 2.在vue例項中的methods定義事件函式 body div id root child click.native handleclick child div script vue.component child ...

Vue 給元件繫結原生事件

給元件繫結原生事件的兩種實現方法宣告乙個元件 var child 使用元件並且繫結事件 click handleclick child 事件方法實現 methods 宣告乙個元件 var child 使用元件並且繫結事件 click handleclick child 事件方法實現 methods ...