上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 41 下一页
摘要: 有的时候可能会有这样的需求,一个竖直的输入框,输入信息,文字也是从上到下排列; (但是在移动端或用轮播swiper时不起作用,可以用textarea代替input) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <met 阅读全文
posted @ 2020-02-09 09:09 study_php_java_C++ 阅读(1184) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> var browser = { versions : function() { var u = navigator.userAgent, app = navigator.appVersion; return {//移动终端浏览器版本信息 阅读全文
posted @ 2020-01-16 14:58 study_php_java_C++ 阅读(444) 评论(0) 推荐(0) 编辑
摘要: $('iframe').contents().find(".btn").click(); 其中 contents(): 查找匹配元素内部所有的子节点(包括文本节点)。如果元素是一个iframe,则查找文档内容 阅读全文
posted @ 2020-01-13 16:30 study_php_java_C++ 阅读(2810) 评论(0) 推荐(0) 编辑
摘要: 之前网站一直正常的,现在提交表单一直301 原因: 前几天把网站http升为https协议,需要去掉连接 // 前内容 把 <form method ="post" action="http://www.test.cn/form001" >改为 <form method ="post" action 阅读全文
posted @ 2020-01-02 16:54 study_php_java_C++ 阅读(487) 评论(0) 推荐(0) 编辑
摘要: /** * 验证台湾地区10位身份证号码 * 10位 * 英文 县市 / 地区 验证码(数字) A 台北市 10 B 台中市 11 C 基隆市 12 D 台南市 13 E 高雄市 14 F 台北县 15 G 宜兰县 16 H 桃园县 17 I 嘉义市 34 J 新竹县 18 K 苗栗县 19 L 台 阅读全文
posted @ 2019-11-25 14:55 study_php_java_C++ 阅读(1022) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/babyxue/article/details/80970526 阅读全文
posted @ 2019-11-20 14:49 study_php_java_C++ 阅读(94) 评论(0) 推荐(0) 编辑
摘要: /** * 去除html标签和空格回车等 * @param $string * @return string */ function cutstr_html($string){ $string = strip_tags($string); $string = trim($string); $stri 阅读全文
posted @ 2019-11-13 17:40 study_php_java_C++ 阅读(740) 评论(0) 推荐(0) 编辑
摘要: 我用来实现自动全备份的脚本(可以满足一般有前后版本兼容要求的导出导入操作,我的字符集是latin1): mysqldump.exe -umyusername -pmypass -h localhost -P 3306 --triggers=false --complete-insert -q --e 阅读全文
posted @ 2019-11-11 15:23 study_php_java_C++ 阅读(379) 评论(0) 推荐(0) 编辑
摘要: overflow: hidden; white-space: nowrap; text-overflow: ellipsis; 代码如上 line-clamp 为文本行数 超过则截断 overflow: hidden; text-overflow: ellipsis; display: -webki 阅读全文
posted @ 2019-11-10 22:14 study_php_java_C++ 阅读(1429) 评论(0) 推荐(0) 编辑
摘要: 回顾 npm install 命令 最近在写Node程序的时候,突然对 npm install 的-save和-save-dev 这两个参数的使用比较混乱。其实博主在这之前对这两个参数的理解也是模糊的,各种查资料和实践后对它们之间的异同点略有理解。遂写下这篇文章避免自己忘记,同时也给node猿友一点 阅读全文
posted @ 2019-11-08 17:06 study_php_java_C++ 阅读(114) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 41 下一页