摘要: using System;using System.Data;using System.Linq;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using Syste 阅读全文
posted @ 2023-10-20 08:53 大虎1 阅读(31) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/huaqiqi/p/4013281.html 阅读全文
posted @ 2023-10-20 08:49 大虎1 阅读(47) 评论(0) 推荐(0) 编辑
摘要: //网格文本框输入,自动勾选$(function(){ $("input[type='text']").focus(function(){ $(this).parent().siblings("td[colname='MC']").children("input[type='checkbox']") 阅读全文
posted @ 2023-06-29 17:11 大虎1 阅读(19) 评论(0) 推荐(0) 编辑
摘要: function Json2Html(data) { var objData = $.parseJSON(data); var tzdiv = document.createElement("div"); var ul = document.createElement("ul"); tzdiv.ap 阅读全文
posted @ 2019-01-05 15:38 大虎1 阅读(439) 评论(0) 推荐(0) 编辑
摘要: select to_char(12313,'$999,999,999.99') from dual $12,313.00select to_char(12313,'L999,999,999.99') from dual ¥12,313.00 select to_number('$551,123.13 阅读全文
posted @ 2018-12-29 21:26 大虎1 阅读(679) 评论(0) 推荐(0) 编辑
摘要: 单击行变色 function GridRowOnClick(gridId,gridRow,pkValue,rowIndex) { if(window.prevRow != null) { window.prevRow.style.backgroundColor = window.prevColor; 阅读全文
posted @ 2018-12-27 11:04 大虎1 阅读(117) 评论(0) 推荐(0) 编辑
摘要: with temp as(select '四川省' nation ,'成都市' city,'第一' ranking from dual union allselect '四川省' nation ,'绵阳市' city,'第二' ranking from dual union allselect '四 阅读全文
posted @ 2018-12-17 21:14 大虎1 阅读(155) 评论(0) 推荐(0) 编辑
摘要: var oCardFrame = window.parent.document; //整个cardframe ,下卡片 $("[type='button']", oCardFrame)[2].click(); 阅读全文
posted @ 2018-12-17 13:22 大虎1 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 1 刚入职时,公司组织所有新员工培训。人力资源部的分组很有意思,部门差异当然是分组的主要考虑因素,但还有一个现象被我们发现了——按照学校来划分。而我们也会不自觉地对号入座,画了一条天然的分界线。 其中有一个人W,和我们的界限会更加明显——他是从一个外地三本学校毕业的。 但谁也不曾想到,三年之后,当我 阅读全文
posted @ 2018-08-08 19:03 大虎1 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 数据域:验证表达式说明:数据域 SKJE 数据域中设置 正则表达式:^[0-9]+(.[0-9]{2})?$点击“保存”按钮,不符合规则,提示“收款金额格式有误”新盛医疗PU3228 C#常用正则表达式"^\d+$" //非负整数(正整数 + 0) "^[0-9]*[1-9][0-9]*$" //正 阅读全文
posted @ 2018-08-07 18:59 大虎1 阅读(108) 评论(0) 推荐(0) 编辑