今天就跟大家聊聊有關(guān)利用vue怎么實(shí)現(xiàn)一個(gè)點(diǎn)擊空白區(qū)域關(guān)閉彈窗的功能,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
首頁(yè)在外層容器里面取一個(gè)名字為main,即ref="main",當(dāng)bankSwitch為true的時(shí)候,彈窗出現(xiàn)
<div class="selectedBorder" ref="main"> <div class="bankItem" v-if="bankSwitch == true"> 你好我是彈窗里面的內(nèi)容部分 </div> </div>
所觸發(fā)的事件如下:
首頁(yè),先在全局創(chuàng)建一個(gè)點(diǎn)擊事件:bodyCloseMenus
事件作用:當(dāng)點(diǎn)擊main容器的時(shí)候(this.refs.main && !this.refs.main.contains(e.target)),并且彈窗出現(xiàn)的時(shí)候(self.bankSwitch == true),點(diǎn)擊空白區(qū)域?qū)棿瓣P(guān)閉(self.bankSwitch = false)
最后,在頁(yè)面注銷(xiāo)前,將點(diǎn)擊事件給移除
mounted() { document.addEventListener("click", this.bodyCloseMenus); }, methods:{ bodyCloseMenus(e) { let self = this; if (this.$refs.main && !this.$refs.main.contains(e.target)) { if (self.bankSwitch == true){ self.bankSwitch = false; } } }, beforeDestroy() { document.removeEventListener("click", this.bodyCloseMenus); },
首頁(yè)在外層容器里面定義一個(gè)阻止冒泡事件,即@click.stop,當(dāng)bankSwitch為true的時(shí)候,彈窗出現(xiàn)
<div class="selectedBorder" @click.stop> <div class="bankItem" v-if="bankSwitch == true"> 你好我是彈窗里面的內(nèi)容部分 </div> </div>
所觸發(fā)的事件如下:
首頁(yè),先在全局創(chuàng)建一個(gè)點(diǎn)擊事件:bodyCloseMenus
事件作用:當(dāng)彈窗出現(xiàn)的時(shí)候(self.bankSwitch == true),點(diǎn)擊空白區(qū)域?qū)棿瓣P(guān)閉(self.bankSwitch = false)
最后,在頁(yè)面注銷(xiāo)前,將點(diǎn)擊事件給移除
mounted() { document.addEventListener("click", this.bodyCloseMenus); }, methods:{ bodyCloseMenus(e) { let self = this; if (self.bankSwitch == true){ self.bankSwitch = false; } }, beforeDestroy() { document.removeEventListener("click", this.bodyCloseMenus); },
看完上述內(nèi)容,你們對(duì)利用vue怎么實(shí)現(xiàn)一個(gè)點(diǎn)擊空白區(qū)域關(guān)閉彈窗的功能有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。
本文名稱:利用vue怎么實(shí)現(xiàn)一個(gè)點(diǎn)擊空白區(qū)域關(guān)閉彈窗的功能-創(chuàng)新互聯(lián)
網(wǎng)頁(yè)網(wǎng)址:http://jinyejixie.com/article30/eicpo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App開(kāi)發(fā)、搜索引擎優(yōu)化、網(wǎng)站改版、網(wǎng)站制作、全網(wǎng)營(yíng)銷(xiāo)推廣、用戶體驗(yàn)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容