From 1bfb91f065ba472a57835c41e16078b03d87b460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Mon, 25 Nov 2024 18:47:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20dropdown=20?= =?UTF-8?q?=E5=9C=A8=20head=20=E6=A0=87=E7=AD=BE=E5=BC=95=E5=85=A5?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E5=BA=93=E6=97=B6=E6=97=A0=E6=B3=95=E5=BC=B9?= =?UTF-8?q?=E5=87=BA=E7=9A=84=E9=97=AE=E9=A2=98=20(#2356)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/dropdown.html | 3 ++- src/modules/dropdown.js | 7 +++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/dropdown.html b/examples/dropdown.html index 32b4a2d1..25cc8e32 100644 --- a/examples/dropdown.html +++ b/examples/dropdown.html @@ -356,7 +356,8 @@ layui.use('dropdown', function () { close: function(){ dropdown.close('testopen') } - }); + }, + {trigger: 'mouseenter'}); return; diff --git a/src/modules/dropdown.js b/src/modules/dropdown.js index f525813b..169b699e 100644 --- a/src/modules/dropdown.js +++ b/src/modules/dropdown.js @@ -86,8 +86,6 @@ layui.define(['jquery', 'laytpl', 'lay', 'util'], function(exports){ var STR_GROUP_TITLE = '.'+ STR_ITEM_GROUP + '>.'+ STR_MENU_TITLE; - var bodyElem = $('body'); - // 构造器 var Class = function(options){ var that = this; @@ -146,6 +144,7 @@ layui.define(['jquery', 'laytpl', 'lay', 'util'], function(exports){ } options.elem = $(options.elem); + options.target = $('body'); // 后续考虑开放 target 元素 // 初始化 id 属性 - 优先取 options > 元素 id > 自增索引 options.id = 'id' in options ? options.id : ( @@ -164,7 +163,7 @@ layui.define(['jquery', 'laytpl', 'lay', 'util'], function(exports){ } // 初始即显示或者面板弹出之后执行了刷新数据 - if(options.show || (type === 'reloadData' && that.mainElem && bodyElem.find(that.mainElem.get(0)).length)) that.render(type); + if(options.show || (type === 'reloadData' && that.mainElem && options.target.find(that.mainElem.get(0)).length)) that.render(type); // 事件 that.events(); @@ -305,7 +304,7 @@ layui.define(['jquery', 'laytpl', 'lay', 'util'], function(exports){ // 辞旧迎新 that.remove(dropdown.thisId); - bodyElem.append(mainElem); + options.target.append(mainElem); options.elem.data(MOD_INDEX_OPENED, true); // 面板已打开的标记 // 遮罩