最新文章
-
JavaScript AJAX原生写法
var Ajax = { get: function(url, fn) { //创建XMLHttpRequest对象 var xhr = new XMLHttpRequest(…… -
-
-
自己写个动画提示框
/*提示框*/ /*html*/ /* */ /*css*/ /*#tip { position: fixed; top: 20 px; left: 10 % ; background: #6786FF; color: # FFFFFF; width: 80 % ; height: 40…… -
获取路由传来的参数
/*获取路由传来的参数*/ /*例如:http://192.168.109.131:8020/H5/ziyemian/hospital_yiyuanxiangqing.html?hospital_id=4*/ window.location.href.split("?")[…… -
解决git下载很慢的问题
通过官网在下载git的时候发现网速只有几十K,淘宝有一个镜像的网站 可以提供下载https://npm.taobao.org/mirrors/git-for-windows/ 解决git下载很慢的问题最先…… -
手机端禁止滑动和开启滑动
/*禁用滑动*/ var mo = function(e) { e.preventDefault(); } document.body.style.overflow = 'hidden'; document.addEventListener("touchmove", mo, false)…… -
-
VBA之正则表达式(32)– 提取指定规格
实例需求:按照指定规则从示例数据提取相应的规格,示例数据如下所示。 A75432222新粉色M/160 – 提取规格为:M B43243333畅销黑色44 – 提取规格为:44 C9311…… -
友情链接