window.onload = function(){
var demo = document.getElementById("demo");
demo.onclick = handler;
function handler(){
console.log("aaa");
}
}
dataTable("url");
$("table").find("input[type='checkbox']:first").prop("checked",true);
window.onload = function(){
var demo = document.getElementById("demo");
demo.addEvent("test",function(){console.log("handler1")});
demo.addEvent("test",function(){console.log("handler2")});
demo.onclick = function(){
this.triggerEvent("test");
}
}
Element.prototype.addEvent = function(en,fn){
this.pools = this.pools || {};
if(en in this.pools){
this.pools[en].push(fn);
}else{
this.pools[en] = [];
this.pools[en].push(fn);
}
}
Element.prototype.triggerEvent = function(en){
if(en in this.pools){
var fns = this.pools[en];
for(var i=0,il=fns.length;i<il;i++){
fns[i]();
}
}else{
return;
}
}
window.onload = function(){
var show = document.getElementById("show");
var hide = document.getElementById("hide");
var content = document.getElementById("content");
show.onclick = function(){
content.modal("show");
}
hide.onclick = function(){
content.modal("hide");
}
content.addEvent("show",function(){alert("show before")});
content.addEvent("shown",function(){
document.getElementById("input").focus();
alert("show after");
});
}
;(function(ep){
ep.addEvent = function(en,fn){
this.pools = this.pools || {};
if(en in this.pools){
this.pools[en].push(fn);
}else{
this.pools[en] = [];
this.pools[en].push(fn);
}
}
ep.triggerEvent = function(en){
if(en in this.pools){
var fns = this.pools[en];
for(var i=0,il=fns.length;i<il;i++){
fns[i]();
}
}else{
return;
}
}
ep.modal = function(t){
switch(t){
case "show":
this.triggerEvent("show");
this.style.display = "block";
setTimeout(function(){this.triggerEvent("shown")}.bind(this),0);//该定时器主要是为了在视觉上先看见content,在弹出消息
break;
case "hide":
this.style.display = "none";
break;
default:
break;
}
}
}(Element.prototype));
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有