摘要: 各种文件的mime类型扩展名:absMIME类型:audio/x-mpeg扩展名:aiMIME类型:application/postscript扩展名:aifMIME类型:audio/x-aiff扩展名:aifcMIME类型:audio/x-aiff扩展名:aiffMIME类型:audio/x-ai... 阅读全文
posted @ 2016-01-22 10:47 Xinney 阅读(277) 评论(0) 推荐(0) 编辑
摘要: function changeImage() { document.getElementById("imgRandom").src = document.getElementById("imgRandom").src + "?random=" + Math.floor(Math.random() ... 阅读全文
posted @ 2014-09-01 09:59 Xinney 阅读(137) 评论(0) 推荐(0) 编辑
摘要: jQuery文字淡入淡出:function scrollNews() { $('#ulInformation li').eq(0).fadeOut('slow', function() { $(this).clone().appendTo($(this).parent()).fadeIn('slow... 阅读全文
posted @ 2014-07-22 10:52 Xinney 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 引用命名空间usingSystem.Drawing;16进制颜色代码转Color类型:Color color =ColorTranslator.FromHtml("#F0F0F0");Color类型转16进制颜色代码:string colorWhite =ColorTranslator.ToHtml... 阅读全文
posted @ 2014-07-10 11:00 Xinney 阅读(280) 评论(0) 推荐(0) 编辑
摘要: /// /// 清除Html标签 /// /// /// protected string ClearHtmlTag(string htmlString) { //删除脚本 ... 阅读全文
posted @ 2014-07-04 08:34 Xinney 阅读(273) 评论(0) 推荐(0) 编辑
摘要: $(function(){$('#send').click(function(){$.ajax({type: "GET",url: "test.json",data: {username:$("#username").val(), content:$("#content").val()},dataT... 阅读全文
posted @ 2014-07-03 18:42 Xinney 阅读(158) 评论(0) 推荐(0) 编辑
摘要: Asp.Net Cookie用法比如建立一个名为cookiePhone,值为2598998的cookieHttpCookie cookie = new HttpCookie["cookiePhone"];cookie.Value = "2598998;Response.AppendCookie(co... 阅读全文
posted @ 2014-06-30 19:09 Xinney 阅读(141) 评论(0) 推荐(0) 编辑
摘要: document.write(parseInt(10*Math.random())); //输出0~10之间的随机整数document.write(Math.floor(Math.random()*10+1)); //输出1~10之间的随机整数//输出指定位数的随机数的随机整数function ... 阅读全文
posted @ 2014-06-26 09:35 Xinney 阅读(139) 评论(0) 推荐(0) 编辑
摘要: Update tableOne set (a,b,c,d,e,f,g) =(select a1,b1,c1,d1,e1,f1,g1 from tableTwowhere f1='20120711' And f2=1) where f3='01' 阅读全文
posted @ 2014-06-24 11:09 Xinney 阅读(1289) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2014-06-16 10:23 Xinney 阅读(1) 评论(0) 推荐(0) 编辑