会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
幽默是一种心情
上一页
1
2
3
4
5
6
···
19
下一页
2018年4月27日
避免浏览器缓存JS
摘要: 有时候更改了JS代码,但是浏览器内容不变,这样<script src="Scripts/myjs/Master.js?v"></script>引入JS就可以避免缓存
阅读全文
posted @ 2018-04-27 17:37 幽默是一种心情
阅读(461)
评论(0)
推荐(0)
编辑
JS图片宽度自适应移动端
摘要: $(function(){ $("#d-intro").find("img").each(function () { $(this).removeAttr("width").removeAttr("height").removeAttr("style"); //if ($(this).next("i
阅读全文
posted @ 2018-04-27 17:33 幽默是一种心情
阅读(1189)
评论(0)
推荐(0)
编辑
2018年4月26日
SQL语句中drop、truncate和delete的用法
摘要: 一、SQL中的语法 1、drop table dbo.Sys_Test 2、truncate table dbo.Sys_Test 3、delete from dbo.Sys_Test where test='test' 二、drop,truncate,delete区别 1、drop (删除表):删
阅读全文
posted @ 2018-04-26 18:02 幽默是一种心情
阅读(4963)
评论(0)
推荐(0)
编辑
C#求百分比
摘要: double a=50; double b=100; 没有小数部分Label1.Text = (a / (a+b)).ToString("0%") 两位小数Label2.Text = (a / (a+b)).ToString("P") ToString("0.00%"); ToString("P3"
阅读全文
posted @ 2018-04-26 17:52 幽默是一种心情
阅读(10549)
评论(0)
推荐(0)
编辑
JS刷新后回到页面顶部
摘要: window.location.href = location.href; 方法一: $(window).scrollTop(0); 方法二:$('html ,body').animate({ scrollTop: -10 }, 300);
阅读全文
posted @ 2018-04-26 17:44 幽默是一种心情
阅读(4380)
评论(0)
推荐(0)
编辑
JS返回上一页并刷新代码整理
摘要: html <a href="javascript:history.go(-1);location.reload()">返回上一页重载页面,本地刷新</a> <a href="#" onclick="self.location=document.referrer;">返回并刷新</a> Javascr
阅读全文
posted @ 2018-04-26 17:37 幽默是一种心情
阅读(318)
评论(0)
推荐(0)
编辑
jQuery 获取设置图片 src 的路径
摘要: 1.获取: $('#img')[0].src 2.设置:$('#img').attr("src", data.CodeUrl);
阅读全文
posted @ 2018-04-26 15:00 幽默是一种心情
阅读(7674)
评论(0)
推荐(0)
编辑
C#银行卡号每隔4位数字加一个空格
摘要: 1.填写银行卡号每隔4位数字加一个空格 Regex.Replace(dic["BankCardNo"].ToString(), @"(\d{4}(?!$))", "$1 ") 2.手机号用*代替: dic["AlipayAccount"].ToString().Substring(0,3)+ "**
阅读全文
posted @ 2018-04-26 14:49 幽默是一种心情
阅读(1152)
评论(0)
推荐(0)
编辑
input标签内容改变时触发事件
摘要: 1. onchange事件与onpropertychange事件的区别: onchange事件在内容改变(两次内容有可能相等)且失去焦点时触发; onpropertychange事件是实时触发,每增加或删除一个字符就会触发,通过js改变也会触发该事件,但是该事件是IE专有。 2. oninput事件
阅读全文
posted @ 2018-04-26 14:47 幽默是一种心情
阅读(1385)
评论(0)
推荐(0)
编辑
C#的Split()方法
摘要: var arr = list[i]["Tag"].Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
阅读全文
posted @ 2018-04-26 14:34 幽默是一种心情
阅读(333)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
···
19
下一页
公告
导航
博客园
首页
新随笔
新文章
联系
订阅
管理