如何在网页中添加/修改右键单击选项
我想更改单击网页上特定项目的右键单击值,并使右键单击值正常工作。我是一名 PHP 开发人员..
请参阅下面的图片
http ://2.bp.blogspot.com/_EzIJxJICfGw/TOuRqAkAn6I/AAAAAAAAAHo/cHERiyuPo90/s1600/right_click.jpg
I want to change right click values which clicking on a particular item on a WebPage and make right click values to functioning. I am a PHP developer..
Kindly see the image below
http://2.bp.blogspot.com/_EzIJxJICfGw/TOuRqAkAn6I/AAAAAAAAAHo/cHERiyuPo90/s1600/right_click.jpg
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你使用 jQuery,你可以尝试 http://plugins.jquery.com/plugin -标签/右键菜单。
If you use jQuery, you can try http://plugins.jquery.com/plugin-tags/right-click-menu.
您需要查看 javascript,因为这主要是客户端行为
也许像 这个 jquery 插件
然后你可以通过调用 php阿贾克斯
You need to look at javascript as this is largely clientside behaviour
Maybe somethign like this jquery plugin
Then you can call php via ajax
您无法更改浏览器为您绘制的默认右键菜单。但是,您可以阻止右键单击事件的默认行为,并在光标位置绘制您自己的菜单(由 HTML 和 CSS 组成)。不过,这需要一些 JavaScript 知识。
You cannot change the default rightclick menu that the browser draws for you. You can, however, prevent the default behavior of the rightclick-event and draw your own menu (made up of HTML and CSS) at the cursor position. This requires some JavaScript knowlege, though.