jQuery 拥有可操作 HTML 元素和属性的强大方法。 jQuery DOM 操作 jQuery 中非常重要的部分,就是操作 DOM 的能力。 jQuery 提供一系列与 DOM 相关的方法,这使访问和操作元素和属性变得很容易。 DOM = Document Object Model(文档对象模 ...
分类:
Web程序 时间:
2020-06-04 18:10:35
阅读次数:
319
<template> <div> home <button @click="reload()">强制更新</button> </div> </template> <script> export default { name: "Home", data () { return { }; }, upda ...
分类:
其他好文 时间:
2020-06-04 15:32:32
阅读次数:
498
第一种使用 微信官方提供的 js-sdk https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html jweixin-1.4.0.js 1.先下载放入目录,在需要支付页面引入微信js 2. 吊起支付的方法 不明白的 ...
分类:
微信 时间:
2020-06-03 20:45:09
阅读次数:
187
FastClick.attach(document.body); FastClick.prototype.focus = function (targetElement) { let length; if (targetElement.setSelectionRange && targetEleme ...
分类:
移动开发 时间:
2020-06-03 20:10:39
阅读次数:
118
在使用织梦cms建站的时候通常会需要统计一些常见的网站数据 那么下面织梦者就为您提供一些织梦cms调用会员数,文章数,评论数,今天新增文章数的代码供您参考 1 <span style="font-family:tahoma,geneva,sans-serif;"><span style="font- ...
分类:
其他好文 时间:
2020-06-03 12:10:55
阅读次数:
57
按钮: <div class="fullScreen" @click="fullScreen"><i class="el-icon-full-screen"></i></div> 视频标签 <video id="video" width="100%" height="100%" autoplay=" ...
分类:
其他好文 时间:
2020-06-02 19:05:38
阅读次数:
271
1.创建指令文件 ng g directive DebounceClickDirective --module=app 2.debounce-click-directive.directive.spec.ts 检查,确保导入正确 3.debounce-click-directive.directiv ...
分类:
其他好文 时间:
2020-06-02 19:03:48
阅读次数:
102
方案1:申明一个变量,点击时置灰提交按钮。等接口调用结束放开按钮,就是你在点击之后,ajax请求完成之前将那个按钮禁止点击 <template> <div> <!-- 其他代码 --> <button v-if="canSave" @click="save">提交</button> <button ...
分类:
其他好文 时间:
2020-06-02 13:25:06
阅读次数:
107
1. Run [Start] - [Server Manager] and Click [Tools] - [Internet Information Services (IIS) Manager]. 2. Select Hostname on the left pane and Click [FT ...
分类:
其他好文 时间:
2020-06-02 12:59:21
阅读次数:
80
300ms点击延迟 移动端的300ms点击延迟是因为移动端可以进行双击缩放的操作,因此浏览器在click之后要等待300ms,看用户有没有下一次点击,也就是判断这次操作是单击还是双击。如果通过监听touchstart事件来替代click事件的话,会导致一些问题:touchstart是手指触摸屏幕就触 ...
分类:
其他好文 时间:
2020-06-02 12:57:28
阅读次数:
54