会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
幽默是一种心情
上一页
1
2
3
4
5
6
7
···
19
下一页
2018年4月26日
JS使用 popstate 事件监听物理返回键
摘要: pushHistory(); window.addEventListener("popstate", function (e) { if (orderid != "") { window.location.href = "/wap/self/orderinfo.aspx?id=" + orderid
阅读全文
posted @ 2018-04-26 14:33 幽默是一种心情
阅读(6372)
评论(1)
推荐(0)
编辑
JQ判断div是否隐藏
摘要: 1. $("#tanchuBg").css("display") 2. $("#tanchuBg").is(":visible") 3. $("#tanchuBg").is(":hidden") 例: if($("#tanchuBg").is(":hidden")) { alert("隐藏了") }
阅读全文
posted @ 2018-04-26 14:24 幽默是一种心情
阅读(982)
评论(0)
推荐(0)
编辑
SQL Server DATEDIFF() 函数
摘要: 返回两个日期之间的时间间隔。 语法DateDiff(interval, date1, date2 [,firstdayofweek][, firstweekofyear]])DateDiff 函数的语法有以下参数: 参数 描述 interval 必选。字符串表达式,表示用于计算 date1 和 da
阅读全文
posted @ 2018-04-26 14:14 幽默是一种心情
阅读(3353)
评论(0)
推荐(0)
编辑
取消a或input标签聚焦后出现虚线框
摘要: 1:在a标签里加入js控制,当a标签被聚焦时,强制取消焦点,这时候a标签自然不会有虚线框。 <a href="#" onfocus="this.blur();">这里设置聚焦时触发blur();强制取消焦点。 2:在a标签里嵌套其他标签,比如span 或者var等等,把内容放在被嵌套的标签里。这时候
阅读全文
posted @ 2018-04-26 11:45 幽默是一种心情
阅读(761)
评论(0)
推荐(0)
编辑
C#定时任务
摘要: Global文件: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Security;using System.Web.SessionState;nam
阅读全文
posted @ 2018-04-26 10:53 幽默是一种心情
阅读(3079)
评论(0)
推荐(0)
编辑
C# 保留N位小数
摘要: 1.只要求保留N位不四舍五入 float f = 0.55555f; int i =(int)(f * 100); f = (float)(i*1.0)/100; 2.保留N位,四舍五入 . decimal d= decimal.Round(decimal.Parse( "0.55555 "),2)
阅读全文
posted @ 2018-04-26 10:50 幽默是一种心情
阅读(326)
评论(0)
推荐(0)
编辑
C#打印单据
摘要: HTML: <form id="form1"> <div id="t_border"> <!--startprint--> <div id="first"> <span id="title">****汽车服务连锁施工单</span> </div> <table id="TableTitle" sty
阅读全文
posted @ 2018-04-26 10:26 幽默是一种心情
阅读(1273)
评论(0)
推荐(0)
编辑
2018年4月21日
SQL语句创建函数
摘要: 先create,再alter alter function fuc (@userid int,@strWhere varchar(max),@strWhere2 varchar(max) ) returns decimal(18,2 )asbegin declare @useridlist varc
阅读全文
posted @ 2018-04-21 12:02 幽默是一种心情
阅读(4603)
评论(0)
推荐(0)
编辑
2018年4月2日
SVN检出新项目
摘要: 1.新建文件夹SourseCode -->打开SourseCode文件夹,右键空白处 > 选择SVN Checkout --选择URL of repository,选择Checkout directory >确定
阅读全文
posted @ 2018-04-02 14:54 幽默是一种心情
阅读(261)
评论(0)
推荐(0)
编辑
2018年3月28日
解决jQuery的toggle()的自动触发问题
摘要: 在1.9以后的版本toggle()就存在这个问题,用之前的版本就正常了 解决办法: 1.去 jquery官网下载一个版本升级文件。http://blog.jquery.com/2013/05/08/jquery-migrate-1-2-1-released/ 2.把原来的那块代码拿出来,写成一个插件
阅读全文
posted @ 2018-03-28 13:36 幽默是一种心情
阅读(1229)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
···
19
下一页
公告
导航
博客园
首页
新随笔
新文章
联系
订阅
管理