摘要: 转载于:http://www.cnblogs.com/lhb25/p/useful-jquery-tips-and-tricks.html1) 禁止右键 在开发 Web 应用的时候,有些情况需要禁用右键单击功能。使用此代码,jQuery 开发人员可以在网页上禁用鼠标右键点击。代码如下:12345678910$(document).ready(function() {//catch the right-click context menu$(document).bind("contextmenu",function(e) { //warning prompt - option 阅读全文
posted @ 2014-03-07 09:16 .L 阅读(129) 评论(0) 推荐(0) 编辑