logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue 获取验证码倒计时

思路:点击“获取验证码”,向后台请求成功,按钮不可点击,时间倒计时;HTML:<Button @click="getCodeFun" :disabled="disabled" >                            <template v-if="sending">

vue 获取select的选中对象值

vue 官网:https://cn.vuejs.org/v2/guide/forms.html#%E9%80%89%E6%8B%A9%E6%A1%86思路:通过下标值来获取,指向的对象的值代码:<!DOCTYPE html><html><head><title>获取数据</title><meta charset="utf-8"&gt

Vue I18n 使用方法

官方地址:http://kazupon.github.io/vue-i18n/zh/started.html#javascript官方代码:HTML<div id="app"><p>{{ $t("message.hello") }}</p></div>JavaScript(main.js)(到时候会使用一个language.js 文件把messsag

#javascript#vue.js
Refused to load the image '<URL>' because it violates the following content security polity diretive

转载地址:https://www.cnblogs.com/xiaoxiaoluoye/p/6945044.html深入学习地址:https://www.cnblogs.com/Hwangzhiyoung/p/9146740.html控制台报错:Refused to load the image '&lt;URL&gt;' because it violates the follo...

replace 正则表达式

$(function(){//验证正则//引用直接在input添加属性;比如正整数 zsyz="1";2位小数点 xsdyz="1"$(document).on("keyup", 'input[zsyz=1]', function () {this.value = this.value.replace(/\D/g, '')//整数});//输

#正则表达式
jquery实现文字上下循环滚动效果

html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">xmlns="http://www.w3.org/1999/xhtml">http-equiv="Content-Type" content="text/html; cha

到底了