摘要: 当页面提交时,执行相关JS函数检查输入是否合法 关键代码 <form action="tj.php" method="post" onSubmit="return check()" name="free"> 完整页面代码 <html> <head> <title>工作记录</title> <scri 阅读全文
posted @ 2020-02-24 03:36 小纪的博客 阅读(266) 评论(0) 推荐(0)
摘要: 鼠标经过INPUT时自动获取焦点 <input type="text" name="addr" onMouseOver="this.focus()" /> 阅读全文
posted @ 2020-02-24 03:32 小纪的博客 阅读(505) 评论(0) 推荐(0)
摘要: 转载地址:https://sjolzy.cn/Sublime-Text-3-crack-registration-code.html 12年的时候分享过Sublime Text 2的注册码和破解方法。4年后容我更新一下Sublime Text 3的注册码。。 最好还是购买正版主持版权。:D。 以下两 阅读全文
posted @ 2020-02-14 23:50 小纪的博客 阅读(398) 评论(0) 推荐(0)
摘要: @rem 设置固定IP地址netsh interface ip set address "本地连接" static 192.168.1.200 255.255.255.0 192.168.1.1 阅读全文
posted @ 2020-02-14 23:48 小纪的博客 阅读(754) 评论(0) 推荐(0)
摘要: 1、按Win+R 2、复制以下命令 rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0 3、点击运行,根据需求勾选相应图标即可 阅读全文
posted @ 2020-02-14 23:47 小纪的博客 阅读(816) 评论(0) 推荐(0)
摘要: 设置开启 启动/不启动 程序Chkconfig --level 0123456 (程序名) on/off 挂载CDMkdir –p /mnt/cdromMount –t auto /dev/cdrom /mnt/cdrom 设置时间Date –s xx/xx/xxxx xx:xx:xx RPM命令安 阅读全文
posted @ 2020-02-14 23:41 小纪的博客 阅读(116) 评论(0) 推荐(0)
摘要: 选择radio1的时候,则启用输入框1 选择radio2的时候,则启用输入框2 <script> function fun_a(value){ if(value "on"){ document.getElementById('a').disabled=''; document.getElementB 阅读全文
posted @ 2020-02-12 23:58 小纪的博客 阅读(268) 评论(0) 推荐(0)
摘要: <script language=javascript> window.onload=function(){ //刷新父页面 window.opener.location.reload(); } </script> 相关连接 JS 弹出小窗口 阅读全文
posted @ 2020-02-12 22:31 小纪的博客 阅读(309) 评论(0) 推荐(0)
摘要: 弹出窗口函数 function openwindow(url,name,iWidth,iHeight){ var url; //转向网页的地址; var name; //网页名称,可为空; var iWidth; //弹出窗口的宽度; var iHeight; //弹出窗口的高度; //window 阅读全文
posted @ 2020-02-12 22:29 小纪的博客 阅读(1468) 评论(0) 推荐(0)
摘要: <script language=javascript> this.window.opener = null; window.close(); </script> 阅读全文
posted @ 2020-02-12 22:25 小纪的博客 阅读(612) 评论(0) 推荐(0)