做密码输入框经常使用点击显示密码功能, <input id="password" class="layui-input" autocomplete="off" maxlength="15" name="password" required="" type="password" placeholder="密码为6-15位非纯数字" /> …
js点击复制一段文字或者链接: $('#btn').click(function(e){ let url = e.currentTarget.dataset.url; $("body").after("<textarea cols='1' rows='1' id='copyContent'>" + url + "<…
原理:拿当前的scrollTop和之前的scrollTop对比 如果变大了,表示向下滚动(scrollTop值变大); 如果变小了,表示向上滚动(scrollTop值变小)。 $(document).ready(function(){ var p=0,t=0; $(window).scroll(function(e){ …
安装 打开深度终端,执行安装svn: sudo apt-get install python-svn 安装完这个继续安装 pysvn-workbench: sudo apt-get install svn-workbench 使用 打开 pysvn-workbench 选择project --> add 选择user new working…
在网络上找到的这个效果,核心代码: <script type="text/javascript"> function autoScroll(obj) { $(obj).find("ul").animate({ marginTop: "-39px" }, 50…
很多时候经常会从后台获取富文本数据,给富文本中的样式一点限制: .content *{ max-width: 100%!important; box-sizing: border-box!important; -webkit-box-sizing: border-box!important; word-wrap: b…
记录分享自己经常使用的初始化样式解决方案: @charset "utf-8"; /* 重置样式 */ html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,p,a,form,input,img,testarea{ margin:0;padding: 0; } body{ font-siz…
在Vue或者小程序中经常用到单选或者多选点击变色的事件,Vue和小程序都是数据for遍历出来的,不能和普通那样设置点击事件更改样式,按照之前那样会全部都变色了。 在Vue或小程序中利用元素的id的不同来判断给哪个添加样式。 在Vue中 <div id="app"> <h1>Vue中制作单选、多选点击变色教程&…
这里使用的Vue的方式是<script src="Vue.min.js"></script>直接引入的。 <div> <ul> <!-- 把allArr数组遍历到item中,v-for循环 --> <li v-for="item in allA…
在使用vue开发时,vue的数据绑定和数据处理方面用的很爽,但是在UI框架方面的东西就少了很多了。其实Vue的ui框架也挺多的,比如element,iview等基于vue的UI框架,对于其他的传统UI框架来说,其中的js组件就少了很多了。对于初学者来说还是使用UI框架来开发速度比较快点,还有些滚动监听、页面动画效果等在Vue中比较麻烦的,要熟悉Vu…
不多说了,看代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>ajax对接</title> </head> <body> <h1…