摘要: 1 function checkMobile(str) { //写一个判断函数 2 3 var re = /^1\d{10}$/ //正则表达式 4 if (re.test(str)) { //判断字符是否是11位数字 5 $("#sj").html("手机号码格式正确"); 6 $("#sj")... 阅读全文
posted @ 2017-06-16 15:23 张小琪 阅读(1415) 评论(0) 推荐(0)
摘要: 新密码 确认新密码 ... 阅读全文
posted @ 2017-06-16 15:20 张小琪 阅读(659) 评论(0) 推荐(0)
摘要: 路径是从WWW目录开始找而不是从磁盘根找,/代表WWW目录: 1 query($sql); 6 foreach($arr as $v) // 遍历出各个列的内容 7 { 8 //图片用img标签获取路径,因为遍历出的img是$v[5],所以路径就是$v[5] 9 echo " 10 {$v[1]} 11 ... 阅读全文
posted @ 2017-06-16 15:15 张小琪 阅读(317) 评论(0) 推荐(0)
摘要: 外部样式为: div.test { width:auto !important; overflow:auto !important } div.test { width:auto !important; overflow:auto !important } 通过 $("div.test").css( 阅读全文
posted @ 2017-06-16 13:38 张小琪 阅读(12109) 评论(3) 推荐(0)