笔记
Angel Devil
这个作者很懒,什么都没留下…
展开
-
c#笔记
c#中 int?:表示可空类型,就是一种特殊的值类型,它的值可以为null用于给变量设初值得时候,给变量(int类型)赋值为 null, 而不是0 int??:用于判断并赋值,先判断当前变量是否为null,如果是就可以赋役个新值,否则跳过C#引用HttpUtility的目的,主要是为了引用C# dll中封装好的操...原创 2019-06-21 09:04:59 · 236 阅读 · 0 评论 -
C# Dictionary, ContainsKey
C#中Dictionary的用法及用途https://www.cnblogs.com/fire909090/p/8207239.html怎么判断Dictionary中,指定的Key已存在if(dict.ContainsKey(T key)){ //已存在key}转载 2019-04-01 17:27:13 · 5089 阅读 · 0 评论 -
providerName
providerName的参数值①providerName="System.Data.SqlClient" ----说明使用的是MSSQLServer数据库②providerName="System.Data.SqlLite" ----说明使用的是SQLLite数据库③providerName="System.Data.OracleClient" ----说明使用的是Oracle数据库...原创 2019-04-30 10:24:45 · 2708 阅读 · 1 评论 -
js之日期
<div style="width:200px; height:100px;font-size:16px;" id="date_today"></div>1、获取当前年月var myDate = new Date();var date = myDate.getFullYear();//年份var month = myDate.getMonth...原创 2019-04-28 14:59:06 · 370 阅读 · 0 评论 -
使用layui遇到的问题及解决方法
问题1:Uncaught TypeError: l.push is not a function解决方法:layui.use('form','table', function () {});应改为layui.use(['form', 'table'], function () {});问题2:如何 将layui table表格列表中显示的数字转换为对应的文字值解决方法:使用tem...原创 2019-05-05 13:57:22 · 2334 阅读 · 0 评论 -
sql语句where 1=1
where 1=1 是为了避免where 关键字后面的第一个词直接就是 “and”而导致语法错误。where 1=1是sql语句条件逻辑判断表达式,由于1=1成立,恒为真,该表达式1=1将始终返回"真"。这种写法实际目的是为了获取逻辑值"true",其实诸如2=2, 1+2=3,'中'='中'等之类的写法都可以返回逻辑值"true",只不过1=1的运算开销更小,故被应用的最普遍。下面例...原创 2019-04-30 10:24:03 · 313 阅读 · 0 评论 -
前台去除后台传过来的时间中含有T的解决方法(2018-05-02T12:00:00)
var date = new Date(+new Date(data.Data[0].CreateDate) + 836001000).toISOString().replace(/T/g, ' ').replace(/.[\d]{3}Z/, ' ') console.log(date);转载 2019-05-30 13:09:34 · 6589 阅读 · 0 评论 -
前台小知识点
background-size:规定背景图像的尺寸如何修改element.style样式:例如:width:200px!important (优先显示)position : absolute生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 : fi...原创 2019-06-21 09:08:42 · 357 阅读 · 0 评论 -
兼容ie浏览器的placeholder的方法
原文章地址:https://www.cnblogs.com/maxiaodan/p/5337213.html(原文有三种方法) <style type="text/css" media="screen"> .phcolor { color: #666; } span { posi...转载 2019-06-21 14:39:45 · 724 阅读 · 0 评论