01 2018 档案

摘要:如何防止回车(enter)键提交表单,其实很简单,就一句话。onkeydown="if(event.keyCode==13)return false;"把这句写在from标签里面就好了。 阅读全文
posted @ 2018-01-31 15:24 旺仔小虎屁 阅读(70) 评论(2) 推荐(0) 编辑
摘要:white-space:normal;就是正常,和不设置一样,连续空格和空行都只会显示一个空格。 white-space:nowrap;不换行是什么意思呢?正常情况下,当我们的文本超出了文本域,文本就会自动折行,这个设置就是说不自动折行了,而是碰到换行标签<br />才换 white-space:p 阅读全文
posted @ 2018-01-31 10:18 旺仔小虎屁 阅读(173) 评论(0) 推荐(0) 编辑
摘要:$("input[name='bankCardType']").val("sdf"); $('input:radio[name="bankCardType"]').attr("checked",false); 验证半角字符和半角日文输入 str="中文;;a" alert(str.match(/[\ 阅读全文
posted @ 2018-01-22 13:40 旺仔小虎屁 阅读(143) 评论(3) 推荐(0) 编辑
摘要:function deldir($dir) { $dh=opendir($dir); while ($file=readdir($dh)) { if($file!="." && $file!="..") { $fullpath=$dir."/".$file; if(!is_dir($fullpath 阅读全文
posted @ 2018-01-17 15:46 旺仔小虎屁 阅读(98) 评论(0) 推荐(0) 编辑