diff --git a/examples/util.html b/examples/util.html
index 5d57c131..f1d1d0aa 100644
--- a/examples/util.html
+++ b/examples/util.html
@@ -18,6 +18,13 @@ body{padding: 50px;}
+
+
+
+
+
+
+
@@ -120,6 +127,20 @@ layui.use(['lay', 'util', 'layer'], function(){
trigger: 'mouseenter'
});
+ // 自定义触发事件的委托元素
+ util.on({
+ // 此处与委托在 body 上的事件共用了 e1 名称,以测试事件冒泡
+ e1: function(othis, e){
+ this.innerHTML = 'click: '+ (Math.random()*100000 | 0);
+ layui.stope(e); // 阻止事件冒泡
+ },
+ e5: function(othis) {
+ this.innerHTML = 'click: '+ (Math.random()*100000 | 0);
+ }
+ }, {
+ elem: '#ID-util-on-test'
+ });
+
// 倒计时
var countdown = util.countdown({