Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Drupal 7 和 Galleria 全屏主题。
我保护我的图像以供 jQuery 拖放。
现在,我希望这些图像不允许像 jQuery 那样右键单击保存图像。
我怎样才能做到这一点?
尝试:
//disable right click $('img').bind('contextmenu', function(e){ return false; });