javascript自定義右鍵菜單插件
本文實(shí)例為大家分享了javascript自定義右鍵菜單插件的具體代碼,供大家參考,具體內(nèi)容如下
1.使用方式
js文件引入<script src="RightMenu.js"></script>
初始化:
let rightMenu = new RightMenu({ targetId:'menu',//需要改變右鍵菜單的元素id menuItems: items//菜單項(xiàng)數(shù)據(jù),json數(shù)組 })
2.menuItems參數(shù)
items = [ { id: 'aa',//菜單id text: 'ccc',//菜單文字,可以是html元素 show: true, //菜單是否顯示 active: false,//菜單是否可用 style: 'item-unactive' } ]
3.方法
setItems(menuItems) 設(shè)置菜單。動(dòng)態(tài)設(shè)置菜單
hide() 隱藏菜單
on(eventType, event) 事件監(jiān)聽
4.事件
itemClick 菜單項(xiàng)點(diǎn)擊,回調(diào)函數(shù)參數(shù)為菜單項(xiàng)的所有屬性
例:
rightMenu.on('itemClick',(param) => { console.log(param) if(param.active === false){ return } alert(JSON.stringify(param)) // rightMenu.hide() })
createBefore 菜單內(nèi)容生成前調(diào)用,可以實(shí)現(xiàn)動(dòng)態(tài)菜單設(shè)置
例:
rightMenu.on('createBefore',(param) => { rightMenu.setItems(items1) })
注:暫不支持級聯(lián)功能
代碼:
class RightMenu{ constructor(param){ this.targetId = param.targetId this.ele = document.querySelector('#' + this.targetId) console.assert(this.ele != null, '未找到id=' + this.targetId + '的元素') this.menu = null this.menuItems = param.menuItems this._menuItems = {} this.itemDefaultClass = 'item-default' this.event = { itemClick: null, createBefore: null } this.flag = true this.init() } init(){ let that = this that.createMenu() this.ele.oncontextmenu = function(ee) { let e = ee || window.event; //鼠標(biāo)點(diǎn)的坐標(biāo) let oX = e.clientX; let oY = e.clientY; //菜單出現(xiàn)后的位置 that.menu.style.display = "block"; that.menu.style.left = oX + "px"; that.menu.style.top = oY + "px"; that.createMenu() //阻止瀏覽器默認(rèn)事件 return false;//一般點(diǎn)擊右鍵會出現(xiàn)瀏覽器默認(rèn)的右鍵菜單,寫了這句代碼就可以阻止該默認(rèn)事件。 } document.oncontextmenu = function(ee){ let e = ee || window.event; if(e.target.id !== that.targetId && e.target.dataset.type != 'item'){ that.menu.style.display = "none" } } document.onclick = function(ee) { let e = ee || window.event; that.menu.style.display = "none" } that.menu.onclick = function(ee) { let e = ee || window.event; if(e.target.dataset.type == 'item'){ if(that.event.itemClick instanceof Function){ that.event.itemClick(that._menuItems[e.target.id]) } } e.cancelBubble = true; } this.menu.onmouseover = function(ee){ that.flag = true } this.menu.onmouseleave = function(ee){ that.flag = false } } createMenu(){ if(this.menu == null){ this.menu = document.createElement('div') this.menu.className = 'menu-default' document.body.appendChild(this.menu) } let mark = true if(this.event.createBefore instanceof Function){ mark = this.event.createBefore() } if(mark){ this.creatItem() } } _bindOncontextmenu(obj){ obj.oncontextmenu = function(ee){ ee.target.click() return false } } creatItem(){ if(this.menuItems.length == 0){ return } let fragement = document.createDocumentFragment() let temp = null let tempItem = null for (let i = 0, len = this.menuItems.length; i < len; i++){ tempItem = this.menuItems[i] if(tempItem.show === false){ continue } temp = document.createElement('div') temp.id = tempItem.id temp.innerHTML = tempItem.text temp.className = tempItem.style || 'item-default' temp.dataset.type = 'item' this._menuItems[tempItem.id] = tempItem fragement.appendChild(temp) this._bindOncontextmenu(temp) } this.menu.innerHTML = '' this.menu.appendChild(fragement) } on(type,event){ this.event[type] = event } hide(){ this.menu.style.display = 'none' } setItems(items){ this.menuItems = items this.creatItem() } }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
elementui-樹形控件實(shí)現(xiàn)子節(jié)點(diǎn)右側(cè)添加圖標(biāo)和數(shù)據(jù)鼠標(biāo)放上去顯示文字效果
這篇文章主要介紹了elementui-樹形控件實(shí)現(xiàn)子節(jié)點(diǎn)右側(cè)添加圖標(biāo)和數(shù)據(jù)鼠標(biāo)放上去顯示文字效果,本文結(jié)合實(shí)例代碼給大家介紹的非常詳細(xì),感興趣的朋友一起看看吧2024-01-01用js實(shí)現(xiàn)的頁面關(guān)鍵字密度查詢代碼
2007-12-12javascript中活靈活現(xiàn)的Array對象詳解
本文的內(nèi)容就如同標(biāo)題一樣,這篇文章將會靈活的運(yùn)行Array對象的一些方法來實(shí)現(xiàn)看上去較復(fù)雜的應(yīng)用。相信對大家學(xué)習(xí)或者理解javascript中的Array對象能具有一定的參考借鑒價(jià)值,有需要的朋友們下面跟著小編一起來學(xué)習(xí)學(xué)習(xí)吧。2016-11-11詳解如何通過JavaScript實(shí)現(xiàn)函數(shù)重載
這篇文章主要為大家詳細(xì)介紹了如何通過JavaScript實(shí)現(xiàn)函數(shù)重載,文中的示例代碼講解詳細(xì),對我們學(xué)習(xí)JavaScript有一定的幫助,感興趣的可以了解一下2023-01-01獲取頁面高度,窗口高度,滾動(dòng)條高度等參數(shù)值getPageSize,getPageScroll
獲取頁面高度,窗口高度,滾動(dòng)條高度等參數(shù)值getPageSize,getPageScroll...2006-09-09