HTML
小林一
这个作者很懒,什么都没留下…
展开
-
做一个自适应大小的弹框,子页面不关父页面不能操作
弹框的方法: function tankuang(){window.showModalDialog(“bb.html”,”“,’center: Yes; resizable: Yes; status: no; scroll: No’); }弹框页面bb.html:<html> <head> <title>bb.html</title> <script type="t原创 2016-06-15 10:46:04 · 1267 阅读 · 0 评论 -
jQuery.form插件
原文链接: http://www.cnblogs.com/heyuquan/p/form-plug-async-submit.html转载 2016-11-16 09:29:08 · 393 阅读 · 0 评论 -
js获取当前时间前一周时间前一个月时间
//获取系统当前时间 var nowdate = new Date(); var y = nowdate.getFullYear(); var m = nowdate.getMonth()+1; var d = nowdate.getDate(); var formatnowdate = y+'-'+m+'-'+d;原创 2016-12-05 16:43:31 · 5818 阅读 · 0 评论 -
验证码生成器google kaptcha
google captcha 是google生成验证码的一个工具类,其原理是将随机生成字符串保存到session中,同时以图片的形式返回给页面,之后前台页面提交到后台进行对比。前端代码: <div class="ui-col-75"> <input type="text" class="ui-input-control ui-col-60" id="captchaCode" name="captc转载 2017-11-07 15:33:36 · 5508 阅读 · 1 评论