摘要:
/*** 获取本周、本季度、本月、上月的开始日期、结束日期*/var now = new Date(); //当前日期 var nowDayOfWeek = now.getDay(); //今天本周的第几天 var nowDay = now.getDate(); //当前日 var nowMonth 阅读全文
摘要:
<a href="javascript:void();" id="rowid1" onclick="changeurl();">7777</a><script> function changeurl(){ //alert('555'); var arr = new Array( "https://w 阅读全文
摘要:
Hi,又见面了,在最近的一次需求中遇到一个问题,在这里总结下,希望和大家一起交流学习; 一.项目需求 岁末年初,公司旗下的app需要上线多个活动,需要制作一个聚合页面,当从外部链接进入聚合页面时候,随机跳到活动页面; 二.需求分析 当时考虑到两个方向,一是在js中实现随机跳转,二是将链接存在数据库, 阅读全文
摘要:
这里面的return含有一些细节知识: 例如:onClick='return add_onclick()'与 onClick='add_onclick()'的区别 JAVASCRIPT在事件中调用函数时用return返回值实际上是对window.event.returnvalue进行设置。 而该值决 阅读全文
摘要:
#!/usr/bin/python# This was written for educational purpose only. Use it at your own risk.# Author will be not responsible for any damage!############ 阅读全文
摘要:
问题: 使用VMware Workstation的虚拟机时,在一段时间不用会自动挂起. 原因: 这里以win7为例,其他系统解决方法类似.原因其实不是VMware Workstation 的问题,而是因为win7系统的自动休眠功能引起的自动挂起.我们只要关闭win7系统的自动休眠功能即可. 解决: 阅读全文
摘要:
/admin/index.asp /admin/login.asp /admin/admin_login.asp /manage/index.asp /manage/login.asp /manage/admin_login.asp /admin/index.aspx /admin/login.as 阅读全文
摘要:
<input type="button" value="Click" id="C" onclick="Go();"><input type="button" value="Wait" id="W" onclick="javascript:alert('Amazing!');"> <script>va 阅读全文
摘要:
文本框输入事件:onchange 、onblur 、onkeyup 、oninput onchange 在用于文本框输入框时,有一个明显的不足. 事件不会随着文字的输入而触发,而是等到文本框失去焦点(onblur)时才会触发. 也就是没有即时性! 且必须值变化才触发 onblur 与onchange 阅读全文
摘要:
123456<input type="text" onkeyup="KeyP(this);" /> <input type="text" id="txt" /><script> function KeyP(v){ document.getElementById("txt").value = v.va 阅读全文