JQuery
大可大可抖
这个作者很懒,什么都没留下…
展开
-
layui select重置
思路: 给重置按钮绑定一个事件 , 事件中 写一个10秒的定时器,把重置的内容赋值给select ( $('#selext').val('value')), 还有加上form.render()原创 2021-03-09 21:27:10 · 1063 阅读 · 0 评论 -
php返回json数据到html前端 phpthink5
转jsonvardata={:json_encode($content)};console.log(data)原创 2021-02-09 09:04:26 · 334 阅读 · 0 评论 -
layui select回显
varselect ='dd[lay-value='+ userId +']';$('#userId').siblings("div.layui-form-select").find('dl').find(select).click();id 是select的id原创 2021-02-04 15:34:33 · 470 阅读 · 0 评论 -
jquery 全局loading
使用layui//设置loadvarinload=layer.load(2,{shade:[0.5,'#555']});varpor1 =$.ajax({url:"",method:'post',data:{},dataType:'JSON',success:function(res){ }})varpor2=$.ajax({...原创 2021-02-02 21:44:04 · 412 阅读 · 0 评论 -
jquery+css三角形旋转
html<div class="head-cont"> <div class="head-tit head-titA">切换数据库</div> <div class="head-item"> <a class="_p">123</a> ..原创 2021-01-08 16:46:59 · 238 阅读 · 0 评论 -
页面没有出现滚动条时底部悬浮显示到最底部
$(function(){//没有滚动条底部样式修改functionhasScrollbar(){returndocument.body.scrollHeight>(window.innerHeight||document.documentElement.clientHeight);}if(!hasScrollbar()){$('.layui-foote...原创 2020-12-28 08:32:36 · 401 阅读 · 0 评论 -
jquery通过事件改变当前行的样式
点击按钮,隐藏下一行 ,并且合并改变, 再次点击显示下一行合并恢复。 var num = 1; $('.showTr').click(function(){ if(num==1){ $(this).parents('tr').find('.row2').attr('rowspan',1); num = 0 } else{ $(this).parents('tr').find('.row2').attr('rowspan',3); num = 1 } $原创 2020-12-14 12:00:41 · 499 阅读 · 0 评论 -
jquery 图片移向购物车效果
cssbody{margin: 0;} .btn{position: fixed; bottom: 5px; right: 10px;} .l{ width: 80%; float: left; background: #eee;height: 100%;;} .r{width: 20%; right: 0; height: 100%; position: fixed; te...原创 2019-07-05 15:31:17 · 242 阅读 · 0 评论 -
jquery点击缓慢滚动到页面顶部
<style> body{margin: 0;} .btn{ position: fixed; bottom: 5px; right: 10px;}</style><body> <div> JavaScript 也正在成为手机应用的开发语言。一般来说,安卓平台使用 Java 语言开发,i...原创 2019-07-03 13:49:19 · 1201 阅读 · 0 评论 -
handlebars.js报错
错误打印:Error: You must pass a string or Handlebars AST to Handlebars.compile出现这个错误我是因为var tpl =$("guestList").html那里没有写(), 在网上复制后没注意。正确的:<!DOCTYPE html><html><head>&l...原创 2019-07-03 09:59:47 · 605 阅读 · 0 评论 -
checkbox 修改样式+多选并取值
样式:<script src="https://upcdn.b0.upaiyun.com/libs/jquery/jquery-2.0.2.min.js"></script> <script> $(function(){ $('.checkAll').on('click',function(){ var vm = $(this)...原创 2019-07-02 15:56:48 · 384 阅读 · 0 评论 -
jquery的checkbox 多选全选反选取值
效果:html部分<ul> <li class="checkAll"><label><input type="checkbox">全选</label></li> <li><label><input type="checkbox" name="veget" value="白菜"&g...原创 2019-07-02 12:10:50 · 254 阅读 · 0 评论 -
jq菜单切换demo
下拉菜单切换:<div> <ul> <li class="main"> <a href="#">菜單1</a> <ul> <li> <a href="#">菜單1</a> </li> <li>...原创 2017-04-25 11:24:32 · 723 阅读 · 0 评论