1. javascript的typeof返回哪些数据类型. 答案:string,boolean,number,undefined,function,object 2. 例举3...
微信公众号h5获取用户openId的方法和步骤 微信h5静默、非静默授权获取用户openId的方法和步骤: 一、openId是什么? openId是用户在当前公众号下的唯一标...
function getUrlParam(name) {//a标签跳转获取参数 var reg =new RegExp("(^|&)" + name +"=([^&]*)...
js: $("#area").on("input propertychange", function () { var $this =$(this), _val = ...
var winWidth = document.documentElement.offsetWidth || document.body.offsetWidth win...
知识要点: $("#dh").offset().top;//元素相对于窗口的距离 $(window).scrollTop(); //监控窗口已滚动的距离; $(documen...
1.vue中全局注册组件:https://blog.csdn.net/qq_34089503/article/details/81329405 2.vue中全局定义变量:ht...
表单上传: 要点: method="post": 采用post方式提交数据 enctype="multipart/form- data":采用multipart格...
新建一个js文件: $.fn.serializeJson = function() { var arr = this.serializeArray(); var json...
css: .bigPic { width: 400px; height: 300px; border: 1px solid #ccc; border-radius: 4px;...
var app = getApp() Component({ /** * 组件的属性列表 */ properties: { title: { type:...
1.码云上新建项目; 2.git init(初始化仓库); 3.git remote add originhttps://gitee.com/smm991230/learn_...
在哪里发送验证什么时候调取该方法: countDown: function () { let that = this; let countDownNum = 61;/...
1.下载ec-canvas文件放到目录为: 2.在文件使用时引入方法: 3.使用方法:
1.安装lib-flexible.js; 2.安装px2rem-loader; 3.在项目入口文件main.js中引入lib-flexible;(import 'lib-fl...
1.安装axios(npm install axios); 2.在src目录下新建一个request文件夹; 3.在request下新建两个文件: api.js(用来统一数据...
vue webpack 配置 vue脚手架(以下命令均在cdm里操作,步骤具体如下) 1)cnpm i vue-cli -g (安装vue所需配置) 2)cd 路径 回车 (...