摘要:
nuget引用zxing.net包 阅读全文
摘要:
string fileName = "***.xlsx"; string AbsolutePath = "E:\\***\\***.xlsx"; IWorkbook workbook = null; //新建IWorkbook对象 FileStream fileStream = new File... 阅读全文
摘要:
bool flag = false; string agent = System.Web.HttpContext.Current.Request.UserAgent.ToLower(); string[] keywords = { "iphone", "ipod", "ipad", "itouch" }; for... 阅读全文
摘要:
js 的replace 默认替换只替换第一个匹配的字符,如果字符串有超过两个以上的对应字符就无法进行替换,这时候就要进行一点操作,进行全部替换。 上面这段代码,只能替换第一个字符“啊”,第二个“啊”就无法替换,这样就没办法满足大多数使用js(replace)的需求 这样,就可以实现整个字符串的替换。 阅读全文
摘要:
PostFromHelper 代码 使用方法 阅读全文
摘要:
function isIE(){ var userAgent = navigator.userAgent, rMsie = /(msie\s|trident.*rv:)([\w.]+)/, rFirefox = /(firefox)\/([\w.]+)/, rOpera = /(opera).+version\/([\w.]+)/, rChrome... 阅读全文
摘要:
原因是mui框架的有个css样式 *{ -webkit-user-select: none; } *{ -webkit-user-select: none; } 其作用是禁掉用户可以选中页面中的内容。 添加以下style样式即可 input{ -webkit-user-select: auto; } 阅读全文
摘要:
根据计算屏幕滚动时距顶部的距离,设置弹出层top为负的 阅读全文
摘要:
jquery.qqFace.js使用方法 引用 <script src="~/Content/qqFace/js/jquery.qqFace.js?v=3"></script> <script src="~/Content/qqFace/js/jquery-browser.js"></script> 阅读全文
摘要:
使用的插件为LArea 使用方法 出现的问题:点击input时会默认弹出软件盘,与插件弹出的省市区选择器重叠 解决办法: $("#txt_area").focus(function () { document.activeElement.blur(); }); 或者 插件地址http://www.5 阅读全文