上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 74 下一页
  2018年6月16日
摘要: 方法一: if ($("#checkbox-id").get(0).checked) { // do something } 方法二: if($('#checkbox-id').is(':checked')) { // do something } 阅读全文
posted @ 2018-06-16 15:38 z5337 阅读(1253) 评论(0) 推荐(0)
  2018年6月13日
摘要: SQL语句包含">"和"<"时,在PL/SQL中可以正常运行,但是放在XML中,编译报错,这是因为在XML文档中的所有文本都会被解析器解析,文本内容中使用"<"这样的特殊字符时,XML使用解析错误,遇到这种情况通常采用下面两种方法。 方法一:利用转义字符替换">"和"<"。 SELECT * FRO 阅读全文
posted @ 2018-06-13 17:02 z5337 阅读(2546) 评论(0) 推荐(0)
  2018年6月12日
摘要: trim(nvl(ipaddress,'')) != '' 这段SQL 并没有像 MSSQL IsNull 一样返回不含空白或null 的内容 经尝试发现 trim('') 为 null 查看 Oracel 存储过程的语句为: 查看 Sql Server 存储过程的语句为: 阅读全文
posted @ 2018-06-12 21:05 z5337 阅读(124) 评论(0) 推荐(0)
摘要: 转自:https://blog.csdn.net/jiuwuerliu/article/details/51207045 参考了:https://www.v2ex.com/amp/t/445522 除了不支持多行字符串,Java 还没有: - raw string - default paramet 阅读全文
posted @ 2018-06-12 19:28 z5337 阅读(1070) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-06-12 09:56 z5337 阅读(1) 评论(0) 推荐(0)
摘要: 转自:https://www.cnblogs.com/amosli/p/3918538.html 也参考了:https://www.cnblogs.com/ShadowFiend007/p/8066855.html 经测试,代码也可以在 .net 4.0 下使用。 阅读全文
posted @ 2018-06-12 08:54 z5337 阅读(480) 评论(0) 推荐(0)
  2018年6月11日
摘要: 将以上 CSS 加入网页,可以发现手机上查看时网页横向显示了。 转自:https://segmentfault.com/q/1010000009286701 阅读全文
posted @ 2018-06-11 10:37 z5337 阅读(511) 评论(0) 推荐(0)
  2018年6月10日
摘要: 把以上代码放入 jquery.easyui.min.js 中即可。 转自:https://www.cnblogs.com/yeminglong/p/5264334.html EasyUI 在 DateBox 有 Bug,需要在 data-options 属性里添加 editable:false 阅读全文
posted @ 2018-06-10 15:11 z5337 阅读(183) 评论(0) 推荐(0)
摘要: 转自: https://www.jb51.net/article/34188.htm 阅读全文
posted @ 2018-06-10 13:51 z5337 阅读(149) 评论(0) 推荐(0)
  2018年6月5日
摘要: private static ILog log = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name); public static UserInfo Instance { 阅读全文
posted @ 2018-06-05 14:36 z5337 阅读(498) 评论(0) 推荐(0)
上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 74 下一页