随笔分类 - JavaScript
摘要:jQuery.fn.extend({ drag: function() { $(document).off("mouseup.drag").on("mouseup.drag",function(){ ...
阅读全文
摘要:1.jQuery鼠标滚轮事件插件Mouse Wheel 下载链接:https://github.com/brandonaaron/jquery-mousewheel/ 使用方法:// using bind$('#my_elem').bind('mousewheel', function(even...
阅读全文
摘要:web前端js代码:$.ajaxSetup({ contentType : "application/x-www-form-urlencoded;charset=utf-8", complete : function(xhr, textStatus) { if (xhr.s...
阅读全文
摘要:前端js代码:$.ajax({ url: 'http://localhost:8080/webApp/somejsonp', dataType: "jsonp", jsonp: "callback", success: function (data) { console....
阅读全文