摘要: 一.标量值函数、内联表值函数、多语句表值函数举例说明 1、标量值函数(返回一个标量值) CREATE FUNCTION dbo.func_date_get_name(@date_into varchar(8)) --CREATE FUNCTION 函数名称(@参数名 参数的数据类型) RETURNS 阅读全文
posted @ 2021-11-16 15:31 ~且听风吟~ 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 1.如果有当月的完整日期,则可以执行以下操作 SELECT dateadd(month, datediff(month, -1, '2021-10-01'), -1) 返回:2021-10-31 00:00:00.000 2.在SQL Server 2012中,可以使用EOMONTH函数 SELEC 阅读全文
posted @ 2021-11-16 14:03 ~且听风吟~ 阅读(13047) 评论(0) 推荐(0) 编辑
摘要: JQ监听 //监听屏幕旋转 $(window).on('orientationchange', function() { var $el = $("body"); // 需要重新获得宽和高的元素 newWidth = $el.width(); // 新的宽 newHeight = $el.heigh 阅读全文
posted @ 2021-10-30 14:14 ~且听风吟~ 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 移动端键盘弹出 $(document).on('focusin', function() { setTimeout(function() { UpStyle() }, 500) }); 移动端键盘关闭 $(document).on('focusout', function() { setTimeou 阅读全文
posted @ 2021-10-30 14:08 ~且听风吟~ 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 什么是AJAX AJAX = 异步的javascript和XML(Asynchronous Javascript and XML) 它不是一门编程语言,而是利用JavaScript在保证页面不被刷新、页面链接不改变的情况下与服务器交换数据并更新部分网页的技术。 对于传统的网页,如果想更新内容,那么必 阅读全文
posted @ 2021-10-30 13:59 ~且听风吟~ 阅读(311) 评论(0) 推荐(0) 编辑
摘要: jquery focus()获得焦点事件 方法:当通过鼠标点击选中元素或通过 tab 键定位到元素时,该元素就会获得焦点。 语法: $(selector).focus() 示例代码: $('#mochu').focus(function(){ $(this).css('border-color',' 阅读全文
posted @ 2021-10-30 13:43 ~且听风吟~ 阅读(1447) 评论(0) 推荐(0) 编辑
摘要: // 对Date的扩展,将 Date 转化为指定格式的String // 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字) Date.prototype.Form 阅读全文
posted @ 2021-10-25 16:59 ~且听风吟~ 阅读(23) 评论(0) 推荐(0) 编辑
摘要: //写cookies function setCookie(name, value) { var Days = 30; var exp = new Date(); exp.setTime(exp.getTime() + Days * 24 * 60 * 60 * 1000); document.co 阅读全文
posted @ 2021-10-25 16:58 ~且听风吟~ 阅读(282) 评论(0) 推荐(0) 编辑
摘要: var a='12,13,14,15';现在想把字符串替换,号为- js 中的replace方法:a.replace(",","-");只能替换掉第一个,号。即,结果为12-13,14,15 js中是没有对字符串进行replaceAll的方法,通常这个时候,全部替换采用正则表达式的方式替换。如下: 阅读全文
posted @ 2021-10-25 16:57 ~且听风吟~ 阅读(69) 评论(0) 推荐(0) 编辑
摘要: head中添加 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> 阅读全文
posted @ 2021-10-25 16:56 ~且听风吟~ 阅读(39) 评论(0) 推荐(0) 编辑