当前标签:WinForm

寒风、落叶 2014-08-07 02:00 阅读:537 评论:0 推荐:0
寒风、落叶 2014-06-12 00:13 阅读:2 评论:0 推荐:0
寒风、落叶 2014-06-11 23:41 阅读:4 评论:0 推荐:0
寒风、落叶 2014-06-11 07:21 阅读:5 评论:0 推荐:0
寒风、落叶 2014-06-11 07:09 阅读:3 评论:0 推荐:0
寒风、落叶 2014-06-11 06:57 阅读:4 评论:0 推荐:0
寒风、落叶 2014-06-11 00:50 阅读:2 评论:0 推荐:0
$(document).ready(function() { // 禁止右键 $(document).bind("contextmenu", function(){return false;}); // 禁止选择 $(document).bind("selectstart", function(){return false;}); // 禁止Ctrl+C 和Ctrl+A $(document).keydown(function(event) { if ((event.ctrlKey&&event.which==67) || (event.ctrlKey&&event.which==86)) { //alert("对不起,版权所有,禁止复制"); return false; } }); });