简体   繁体   中英

controlling links on right mouse clicks in my website

I've been searching for examples of custom on mouse right click menus but i would like to emulate the same options you get when you right click in chrome on a web page Maintaining cut, copy, and paste but also (here is the tricky part) instead of opening a new tab in your browser it opens the same webpage inside an iframe, option.

Thanks

I would suggest hiding the "Window" which will be a div or some HTML element Once user has right clicked on an element you can access it through jquery selectors and enable it's visibility.

css:

#hiddenFrame {

display: none;
width: 250px;
height: 250px;

}


javascript:


menu1 = { attributes: "brief_number,brief_id,...",
  items:  [
                {
                 type:RightContext.TYPE_MENU,
                 text:"some text",
                 onclick:function() {$('#hiddenFrame').show();}
                }
          ]
        };

Take a look at this plugin, it might help you

http://plugins.jquery.com/project/jqueryContextMenu

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM