javascript自定義右鍵菜單插件
本文實例為大家分享了javascript自定義右鍵菜單插件的具體代碼,供大家參考,具體內(nèi)容如下
1.使用方式
js文件引入<script src="RightMenu.js"></script>
初始化:
let rightMenu = new RightMenu({
targetId:'menu',//需要改變右鍵菜單的元素id
menuItems: items//菜單項數(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è)置菜單。動態(tài)設(shè)置菜單
hide() 隱藏菜單
on(eventType, event) 事件監(jiān)聽
4.事件
itemClick 菜單項點擊,回調(diào)函數(shù)參數(shù)為菜單項的所有屬性
例:
rightMenu.on('itemClick',(param) => {
console.log(param)
if(param.active === false){
return
}
alert(JSON.stringify(param))
// rightMenu.hide()
})
createBefore 菜單內(nèi)容生成前調(diào)用,可以實現(xiàn)動態(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)點的坐標(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;//一般點擊右鍵會出現(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)文章
javascript Onunload與Onbeforeunload使用小結(jié)
Onunload,onbeforeunload都是在刷新或關(guān)閉時調(diào)用,可以在<script>腳本中通過window.onunload來指定或者在<body>里指定。區(qū)別在于onbeforeunload在onunload之前執(zhí)行,它還可以阻止onunload的執(zhí)行。2009-12-12
JavaScript中prompt()函數(shù)的用法實戰(zhàn)例子
JavaScript中的prompt是一個函數(shù),用于在瀏覽器中顯示一個對話框,提示用戶輸入一些信息,這篇文章主要給大家介紹了關(guān)于JavaScript中prompt()函數(shù)的用法實戰(zhàn),需要的朋友可以參考下2023-11-11
javascript 一個自定義長度的文本自動換行的函數(shù)
javascript 一個自定義長度的文本自動換行的函數(shù)...2007-08-08
OpenLayers實現(xiàn)點要素圖層的聚合顯示的方法
在很多情況下,點要素圖層中的要素數(shù)量可能會成百上千,如果一個點要素圖層中的點數(shù)量很多,我們就會采取圖層聚合的方式對其進(jìn)行處理,本文就來介紹一下,感興趣的可以了解一下2021-09-09
layui-table對返回的數(shù)據(jù)進(jìn)行轉(zhuǎn)變顯示的實例
今天小編就為大家分享一篇layui-table對返回的數(shù)據(jù)進(jìn)行轉(zhuǎn)變顯示的實例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-09-09
javascript 翻頁測試頁(動態(tài)創(chuàng)建標(biāo)簽并自動翻頁)
javascript 翻頁測試頁(動態(tài)創(chuàng)建標(biāo)簽并自動翻頁),需要的朋友可以參考下。2009-12-12

