2017年2月4日
摘要: using DClient; using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CouchBaseDAL { public cla... 阅读全文
posted @ 2017-02-04 15:51 cxd1008 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 以上这么写会有一点问题,HttpContext在winfrom和控制台程序会有问题。做了如下修改: 阅读全文
posted @ 2017-02-04 15:49 cxd1008 阅读(127) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Web; namespace Common { public class CookieHelper { /// /// 设置Cookie缓存 /// /// /// /// public static v... 阅读全文
posted @ 2017-02-04 15:48 cxd1008 阅读(167) 评论(0) 推荐(0) 编辑
摘要: Site1.Master RelieveCaseNo.aspx子页 阅读全文
posted @ 2017-02-04 15:24 cxd1008 阅读(208) 评论(0) 推荐(0) 编辑
摘要: jquery.validate.js jquery.validate.messages_zh.js 阅读全文
posted @ 2017-02-04 11:43 cxd1008 阅读(145) 评论(0) 推荐(0) 编辑
摘要: //点击DIV移动 function btnMoveClick() { $("#div1").stop(true, true); var vleft = $("#div1").position().left; var vtop = $("#div1").position().top; var vwi 阅读全文
posted @ 2017-02-04 10:49 cxd1008 阅读(135) 评论(0) 推荐(0) 编辑
摘要: <asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click" OnClientClick="return confirm('确认解除绑定么?')">解除用户绑定</asp:LinkButton> 阅读全文
posted @ 2017-02-04 10:39 cxd1008 阅读(135) 评论(0) 推荐(0) 编辑
摘要: $("#showTitle").mousedown(function (e) { vbool = true; vHeight = e.pageY; vWidth = e.pageX; cHeight = vHeight - $("#show").offset().top; cWdith = vWidt... 阅读全文
posted @ 2017-02-04 10:32 cxd1008 阅读(234) 评论(0) 推荐(0) 编辑
摘要: $(function () { $(" #ul1 li").hover(function () { $(this).addClass("lihover"); }, function () { $(this).removeClass("lihover"); }); $(".divbody").mousewheel(functio... 阅读全文
posted @ 2017-02-04 10:29 cxd1008 阅读(117) 评论(0) 推荐(0) 编辑
摘要: $(function () { //上菜单 $("#ListTopUL li").hover(function () { //$(this).addClass("ListTopULhover"); //$(this).siblings(this).removeClass("ListTopULhover"); var i = $(... 阅读全文
posted @ 2017-02-04 10:19 cxd1008 阅读(424) 评论(0) 推荐(0) 编辑
摘要: $(function () { var d1left = $("#d1").offset().left; var d2left = $("#d2").offset().left; var d3left = $("#d3").offset().left; var d4left = $("#d4").o 阅读全文
posted @ 2017-02-04 10:16 cxd1008 阅读(127) 评论(0) 推荐(0) 编辑
摘要: var creatShow = $('❄'); var setI; function downSnowClick() { $("#downSnow").attr("disabled",true); //❉❅❆✻✼❇❈❊✥✺ setI = setInterval(function () { var cloneShow = creatShow.clone(t... 阅读全文
posted @ 2017-02-04 10:13 cxd1008 阅读(181) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title></title> <link href="~/Areas/CssJquery/CSS/AccordionDemo.cs 阅读全文
posted @ 2017-02-04 10:11 cxd1008 阅读(98) 评论(0) 推荐(0) 编辑
摘要: $(function () { $(document).ajaxStart(function () { //alert("正在加载"); $(".loadDiv").show(); }).ajaxStop(function () { //alert("结束加载"); $(".loadDiv").hi 阅读全文
posted @ 2017-02-04 09:32 cxd1008 阅读(323) 评论(0) 推荐(0) 编辑
摘要: $(function () { var box = []; }); function obj1() { var obj = Object(); obj.a = "a1"; obj.b = "b1"; obj.c = 10; alert(obj.a + "|" + obj.b + "|" + obj. 阅读全文
posted @ 2017-02-04 09:27 cxd1008 阅读(117) 评论(0) 推荐(0) 编辑
摘要: function Math1() { //向上舍入 alert(Math.ceil(25.9)); alert(Math.ceil(25.5)); alert(Math.ceil(25.1)); } function Math2() { //向下舍入 alert(Math.floor(25.9)); 阅读全文
posted @ 2017-02-04 09:23 cxd1008 阅读(142) 评论(0) 推荐(0) 编辑
摘要: jQuery 元素选择器 $("*")所有元素 $("p") 选取 元素。 $("p.intro") 选取所有 class="intro" 的 元素。 $("#lastname")id="lastname" 的元素 $(".intro")所有 class="intro" 的元素 $("p")所有 元素 $(".intro.demo")所有 class="intro" 且 cla 阅读全文
posted @ 2017-02-04 09:18 cxd1008 阅读(202) 评论(0) 推荐(0) 编辑
摘要: HTML <pre>预格式文本。它保留了空格和换行。 <del>二十</del> <ins>十二</ins>删除文本和下划线文本 <abbr>定义缩写或首字母缩略语。 <address>定义文档作者或拥有者的联系信息。 <bdo>定义文本方向。<bdo dir="rtl">abc</bdo> 从右往 阅读全文
posted @ 2017-02-04 09:16 cxd1008 阅读(111) 评论(0) 推荐(0) 编辑