上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: $(document).contextmenu(function(e){ return false; }); $(document).contextmenu(function(e){ if(e.button==0||2){ alert("右键点击成功!"); } }); 转自:https://www 阅读全文
posted @ 2020-11-09 14:56 ▍凉城空巷° 阅读(75) 评论(0) 推荐(0) 编辑
摘要: <link rel="stylesheet" href="css/jquery-ui.min.css"> <div id="containment-wrapper"></div> $(function() { $("#containment-wrapper").resizable({ handles 阅读全文
posted @ 2020-09-17 14:13 ▍凉城空巷° 阅读(66) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .DreamMenu { position: absolute; visibility: hidden; z-in 阅读全文
posted @ 2020-08-28 11:19 ▍凉城空巷° 阅读(164) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>纯JS日历插件(注释全)</title> </head> <body> <input type="text" style="border:1px solid #999;" oncl 阅读全文
posted @ 2020-08-28 11:16 ▍凉城空巷° 阅读(104) 评论(0) 推荐(0) 编辑
摘要: $(document).on('click touchstart', '#btn', function(){ alert(); }); 阅读全文
posted @ 2020-05-26 09:38 ▍凉城空巷° 阅读(124) 评论(0) 推荐(0) 编辑
摘要: var ua = navigator.userAgent.toLowerCase(); var isWeixin = ua.indexOf('micromessenger') != -1; var isAndroid = ua.indexOf('android') != -1; var isIos 阅读全文
posted @ 2020-05-22 11:22 ▍凉城空巷° 阅读(148) 评论(0) 推荐(0) 编辑
摘要: <view bindtap='showButton'>点击</view> <view class="Mask {{MaskView?'hide':'show'}}">受控制的view</view> data: { MaskView: true, }, showButton: function () 阅读全文
posted @ 2020-01-20 15:15 ▍凉城空巷° 阅读(1319) 评论(0) 推荐(0) 编辑
摘要: <!-- 主容器 --> <view class="stepper"> <!-- 减号 --> <text class="{{minusStatus}}" bindtap="bindMinus">-</text> <!-- 数值 --> <input type="number" bindchange 阅读全文
posted @ 2020-01-20 15:09 ▍凉城空巷° 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 转:https://blog.csdn.net/JamieCheung/article/details/80163986 // 点击div框外,关闭div$('#productDetailDiv').click(function(event) { $('#productDetailDiv').hid 阅读全文
posted @ 2019-12-05 11:10 ▍凉城空巷° 阅读(175) 评论(0) 推荐(0) 编辑
摘要: var Nearby = $("#Nearby").offset().top; //获取Nearby距离top的高度 mui('.mui-scroll-wrapper').scroll().scrollTo(0,-Nearby,100); //滑到Nearby处 阅读全文
posted @ 2019-11-05 09:40 ▍凉城空巷° 阅读(307) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页