随笔分类 - jquery
layui的msg弹出框设置字体大小弹出框大小
摘要:layer.msg("123", { icon: $.modal.icon(modal_status.WARNING), time: 3000, shift: 5,offset:"rb",area:['400px','66px'] },function () { }); layer.msg('<sp
阅读全文
jquery循环显示api接口的数据
摘要:$(window).load(function(){ $.ajax({ url:"/index/product/hotpro", method:"post", dataType: "json", success:function (json) { console.log(json); var htm
阅读全文
jquery实现禁用右键和F12查看调试网页
摘要:引入jquery <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> $(document).bind("contextmenu", function () { return false; });//禁止右键 doc
阅读全文