随笔分类 - js
摘要:<form id="parkSys_bind_edit_form" name="parkSys_bind_edit_form" method="POST" action="{:url('card/savepost')}"> <ul class="addinput"> <li><span>绑定方式:<
阅读全文
摘要:<!DOCTYPE html> <html> <head> <title></title> <script src="https://cdn.staticfile.org/jquery/3.1.1/jquery.min.js"></script> </head> <body> <input type
阅读全文
摘要:如何从表单提交事件中获取导致提交的按钮? 保存 预览
阅读全文
摘要:首页 商业 艺术 商业3 艺术 风云榜 接招 招聘 --> ...
阅读全文
摘要:$(".sendDate").click(function(){ var data = new FormData($('#uploadForm')[0]); // var data = $('#uploadForm').serialize(); $.ajax({ type: "POST", ...
阅读全文
摘要:arr_wx = ['gcd9740','wjb8948','gcd3815','wjb8948']; var wx_index = Math.floor((Math.random()*arr_wx.length)); stxlwx = arr_wx[wx_index];
阅读全文
摘要:/* * * 整数前面补零 * * 质朴长存法 * num 要补灵的整数 * n个数,比整数位数多前面自动补零 * **/ function pad(num, n) { var len = num.toString().length; while(len < n) { num = "...
阅读全文