摘要:
插件:Masked Input Plugin http://digitalbush.com/projects/masked-input-plugin/ jQuery(function($){ $("#date").mask("99/99/9999"); $(... 阅读全文
摘要:
.planFinderLink { font-size : 13px ; color : #365cb7 ; text-decoration : underline ; } /* Overlay */ #uplo... 阅读全文
摘要:
replace如果替换数据时,默认只替换第一个。 如果在替换的时候加上: / 替换内容 /g 就能实现全部替换 例如:functionchange(strvalue){strvalue=strvalue.replace(/&/g,"&");strvalue=strvalue.replace(/</g,"<");strvalue=strvalue.replace(/>/g,">");strvalue=strvalue.replace(/"/g," 阅读全文
摘要:
.NET调用存储过程时,有时候会变的很慢甚至会timeout,但是再执行一下存储过程,再调用就会很快。 解决办法: 1. 在可能比较耗时的语句后面加上option(recompile) 2. 创建存储过程时在其定义中指定 WITH RECOMPILE 选项,表明 SQL Server 将不对该存储... 阅读全文
摘要:
转自:http://www.cnblogs.com/mbailing/archive/2012/07/16/2593368.htmlEF4.1/4.3 的一些使用小技巧 (1)、多表关联查询的写法: var query = (from m in context.Dic_PropertyClass... 阅读全文
摘要:
DECLARE@Table1TABLE(EntityIDINT,AttributeIDINT,OptionTextVARCHAR(50))INSERTINTO@Table1SELECT5030,48,'M'INSERTINTO@Table1SELECT5030,48,'F'--BeginactualworkingSQLSELECTT1.EntityID,T1.AttributeID,STUFF((SELECT','+T2.OptionTextFROM@Table1T2WHERET2.AttributeID=T1.AttributeIDANDT2. 阅读全文
摘要:
参考: http://api.jquery.com/event.preventDefault/ 参考: http://www.w3school.com.cn/htmldom/event_preventdefault.asp 定义和用法 取消事件的默认动作。 语法 event.preve... 阅读全文
摘要:
SimpleModal 插件 http://www.ericmmartin.com/projects/simplemodal/ 以下代码可以避免在IE中使用simpleModal弹出iframe出错问题 varlicense_no='' $(document).ready( funct... 阅读全文
摘要:
SELECT DATEADD(yy, DATEDIFF(yy, 0, getdate()), 0) -- 当前年1月1号 SELECT DATEADD(mm, DATEDIFF(mm, 0, getdate()), 0) -- 当前月1号 SELE... 阅读全文
摘要:
function reinitIframe(){ var iframe = document.getElementById( " frame_content " ); try { var bHeight = iframe.contentWin... 阅读全文