示例#1
0
 def m_addEventListener(self):
     # 在这个EventTarget上添加指定事件类型的事件监听器 调用之前必须创建一个函数
     event = randoms.Events()
     function = randoms.Funcs()
     useCapture = randoms.bool()
     return "'%s',%s,%s" % (event, function, useCapture)
示例#2
0
 def p_onafterprint(self):
     return r.Funcs()
示例#3
0
 def p_onmozinterruptend(self):
     return r.Funcs()
示例#4
0
文件: Element.py 项目: qiyeboy/morph
 def p_onlostpointercapture(self):
     return r.Funcs()
示例#5
0
 def p_ontouchenter(self):
     return r.Funcs()
示例#6
0
 def p_ontouchcancel(self):
     return r.Funcs()
示例#7
0
 def p_ononline(self):
     return r.Funcs()
示例#8
0
 def p_ontouchstart(self):
     return r.Funcs()
示例#9
0
 def p_onlanguagechange(self):
     return r.Funcs()
示例#10
0
 def p_onmessage(self):
     return r.Funcs()
示例#11
0
 def p_onhashchange(self):
     return r.Funcs()
示例#12
0
 def p_onbeforeunload(self):
     return r.Funcs()
示例#13
0
 def p_onbeforeprint(self):
     return r.Funcs()
示例#14
0
 def p_oncut(self):
     return r.Funcs()
示例#15
0
 def p_onpagehide(self):
     return r.Funcs()
示例#16
0
 def p_onpaste(self):
     return r.Funcs()
示例#17
0
 def p_onpageshow(self):
     return r.Funcs()
示例#18
0
 def p_ontouchmove(self):
     return r.Funcs()
示例#19
0
 def p_onpopstate(self):
     return r.Funcs()
示例#20
0
 def p_ontouchleave(self):
     return r.Funcs()
示例#21
0
 def p_onstorage(self):
     return r.Funcs()
示例#22
0
 def p_onmozinterruptbegin(self):
     return r.Funcs()
示例#23
0
 def p_onunhandledrejection(self):
     return r.Funcs()
示例#24
0
 def p_onencrypted(self):
     return r.Funcs()
示例#25
0
 def p_onunload(self):
     return r.Funcs()
示例#26
0
文件: Element.py 项目: qiyeboy/morph
 def p_onwheel(self):
     return r.Funcs()
示例#27
0
 def p_oncopy(self):
     return r.Funcs()
示例#28
0
 def m_removeEventListener(self):
     # 从这个EventTarget移除事件监听器
     event = randoms.Events()
     function = randoms.Funcs()
     useCapture = randoms.bool()
     return "'%s',%s,%s" % (event, function, useCapture)
示例#29
0
 def m_toBlob(self):
     callback = r.Funcs()
     mimeType = r.MIMEType()
     qualityArgument = r.double(1)
     return "'%s','%s',%s" % (callback, mimeType, qualityArgument)