随笔分类 - JQuery
摘要:Easyui 导出数据表格 (Export DataGrid)_Easyui扩展 http://www.jeasyui.net/extension/204.html EasyUI DataGrid导出Excel_JavaScript_LI_AINY的博客 CSDN博客 https://blog.cs
阅读全文
摘要:Live Demo jQuery EasyUI https://www.jeasyui.com/demo/main/index.php?plugin=DataGrid&theme=material teal&dir=ltr&pitem=&sort=asc EasyUI 数据表格的客户端分页(Clie
阅读全文
摘要:Easyui DataGrid纵向合并单元格(根据某列合并)_JavaScript_Codeyi的博客 CSDN博客 https://blog.csdn.net/qq_33578833/article/details/78812035 ExtJs4之Grid详细 张龙豪 博客园 https://ww
阅读全文
摘要:jQuery.ready() | jQuery API Documentation https://api.jquery.com/ready/ jQuery.noConflict()| jQuery API文档 https://api.jquery.com/jQuery.noConflict/
阅读全文
摘要:JavaScript Cookieshttps://www.w3school.com.cn/js/js_cookies.asp GitHub - carhartl/jquery-cookie: No longer maintained, superseded by JS Cookie:https:/
阅读全文
摘要:Navigator.sendBeacon() - Web API 接口参考 | MDNhttps://developer.mozilla.org/zh-CN/docs/Web/API/Navigator/sendBeacon $.ajax(url,[settings]) | jQuery API 3
阅读全文
摘要:var inputPhoneInFormActivity = $("form#formtab input[name='phone']"); if(inputPhoneInFormActivity.val() != ""){ inputPhoneInFormActivity.attr("disabled",true); }
阅读全文
摘要:[2] 日历任务插件(jquery版)新增日历任务和点击监听 - qq_26462567的博客 - CSDN博客https://blog.csdn.net/qq_26462567/article/details/84838634 Planyway:日历和团队时间表 - Chrome插件(谷歌浏览器插
阅读全文
摘要:http://www.pureexample.com/jquery/cross-domain-ajax.html http://www.pureexample.com/ExampleTesterII-14.html https://www.sitepoint.com/jsonp-examples/
阅读全文
摘要:https://stackoverflow.com/questions/3090662/jquery-empty-vs-remove http://www.cnblogs.com/yeer/archive/2009/06/10/1500682.html empty清空子元素,保留当前容器;remov
阅读全文
摘要:http://ckeditor.com/ 这是老大哥 http://kindeditor.org/ 这是新秀 http://htmleditor.in/firefox-html-editor.html 未知数 一堆的相关UBB工具(长的,短的,高的,矮的,胖的,瘦的,还有。。。) http://ww
阅读全文
摘要:This is a paragraph. 复制每个 p 元素,然后追加到 body 元素
阅读全文
摘要:http://learn.jquery.com/using-jquery-core/faq/how-do-i-test-whether-an-element-exists/ http://www.jb51.net/article/49779.htm 通常我们的做法是 复制代码代码如下: if($('
阅读全文
摘要:How can I disable jquery validation on readonly fields? http://stackoverflow.com/questions/10803294/how-can-i-disable-jquery-validation-on-readonly-fi
阅读全文
摘要:jQuery <1.9 ('#inputId').prop('readonly', true); Read more about difference between prop and attr
阅读全文
摘要:简单的说empty,首先循环给后代元素移除绑定(释放内存)、清除jquery给此dom的cache,然后循环removeFirstChild,而html(''),则是简单暴力的设置innerHTML = ''; 怪不得以前有人说在IE上用html("")导致内存泄露呢。重复调用几遍,内存占用越积越多
阅读全文
摘要://代码整理:懒人之家 www.lanrenzhijia.com//分页插件/**2014-08-05 ch2016-07-19 Modified By RenGuoQiang**/(function($){ var ms = { init:function(obj,args){ return (f
阅读全文
摘要:function ajaxPost(url, data) { var async = false; var result = {}; $.ajax({ url : url, async : async, cache : false, data : data, type : "POST",// bef
阅读全文
摘要:jQuery 中元素的click事件中绑定其他元素的click事件。 因为jQuery中的click事件会累计绑定,导致事件注册越来越多。 解决方案: 1.能够避开,避免把click事件绑定到其他元素的例如click,hover等事件中。 2.不能避开,使用unbind("click"),然后再bi
阅读全文
摘要:var valueArr = new Array(); if( $("input[name='type']").val() != ""){ valueArr = $("input[name='type']").val().split(","); ...
阅读全文