//移动端 $(".demo").on("touchstart", function(e) { e.preventDefault(); startX = e.originalEvent.changedTouches[0].pageX, startY = e.originalEvent.changed ...
分类:
移动开发 时间:
2020-04-18 14:02:44
阅读次数:
111
可编辑的div在粘贴从word复制过来的内容时,会带着格式,清楚格式的做法如下: ...
分类:
其他好文 时间:
2020-04-17 23:58:58
阅读次数:
198
<template> <!--游玩区域--> <div class="panel"> <canvas id="canvas" @touchstart.prevent="touchStart($event)" @touchmove.prevent="eventMove($event)" :style= ...
分类:
其他好文 时间:
2020-04-02 11:55:41
阅读次数:
73
document.body.addEventListener('touchmove', function (e) { e.preventDefault() }, { passive: false }) ...
分类:
微信 时间:
2020-04-01 10:42:17
阅读次数:
96
1. 整合jenkins和阿里云code仓库 1.1. 为code仓库添加SSH密钥 1.2. 为jenkins添加全局凭证 2. Code添加webhooks自动触发jenkins 在jenkins的系统设置 全局安全设置中,取消勾选Prevent Cross Site Request Forge ...
分类:
其他好文 时间:
2020-03-16 12:55:53
阅读次数:
260
1、主要作用主要作用: 给DOM元素绑定事件。(v-on:事件名称 = “事件执行和函数引用”) 2、简写方法简写方法: 事件绑定简写:@事件名称 = “事件执行和函数引用”。 3、常用事件修饰符.stop - 调用 event.stopPropagation()。.prevent - 调用 eve ...
分类:
其他好文 时间:
2020-03-10 20:19:57
阅读次数:
236
插值表达式 数据绑定最常见的形式,其中最常见的是使用插值表达式,写法是{{}} 中写表达式 例如:<span>Message: {{ msg }}</span> 注意:1.必须是一句话,必须是合法的js表达式(if else for switch都不能写) 2.必须有返回值 常用指令 v-cloak ...
分类:
其他好文 时间:
2020-03-10 13:44:06
阅读次数:
63
1、绑定监听@click: (以监听click为例,其他如keyup,用法类似) v-on:click="fun" @click="fun" @click="fun(参数)" <button @click="test1">test1</button> <button @click="test2('a ...
分类:
其他好文 时间:
2020-03-03 13:18:20
阅读次数:
95
<div id="demo"> <form @submit.prevent="handleSubmit"> <span>用户名:</span> <input type="text" v-model="user.username"> <br> <span>密码:</span> <input type= ...
分类:
其他好文 时间:
2020-02-18 13:19:00
阅读次数:
91
For eslint prevent console plugin, we also want to prevent user do so: var csl = console csl.log() Code: const disallowedMethods = ['log', 'info', 'wa ...
分类:
其他好文 时间:
2020-02-17 19:48:18
阅读次数:
63