上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: 父子查询: 根据父 id 查询下面所有子节点数据;子父查询: 根据子 id 查询上面所有父节点数据 创建表: DROP TABLE IF EXISTS vrv_org_tab; CREATE TABLE vrv_org_tab ( id bigint(8) NOT NULL AUTO_INCREME 阅读全文
posted @ 2020-06-30 17:26 农名工进城 阅读(1981) 评论(0) 推荐(0) 编辑
摘要: package SSM.utils; import java.security.MessageDigest; import java.util.Calendar; import java.util.TimeZone; /** * SHA加密工具类 * @author zhouhe * @date 2 阅读全文
posted @ 2020-06-29 16:45 农名工进城 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 按钮: {position: 'fixed',bottom: 0;} 如果 按钮覆盖了容器的内容,容器加个padding-bottom就行了 容器: {padding-bottom: 100px;} 这样的话,按钮会固定在手机屏幕的底部,如果要居中的话要设置 按钮{ margin:auto; lef 阅读全文
posted @ 2020-06-29 08:36 农名工进城 阅读(950) 评论(0) 推荐(0) 编辑
摘要: 引言 在电商类、阅读类、社交类等APP中经常会涉及到图片预览功能,只有用户愿意,只要点击图片便可单独的显示该图片,并且可以将图片进行放大预览,如何在APP中没有该小技巧的话,那用户体验可能会大打折扣。 实现的效果 源码 <html> <head> <meta charset="utf-8"> <ti 阅读全文
posted @ 2020-06-11 09:38 农名工进城 阅读(1532) 评论(0) 推荐(0) 编辑
摘要: 以下为MySQL语句演示: SELECT * FROM t_news AS n ORDER BY n.`News_ID` 当前ID为4,读取上一条记录: SELECT * FROM t_news AS n WHERE n.`News_ID` < 4 ORDER BY n.`News_ID` DESC 阅读全文
posted @ 2020-06-10 17:45 农名工进城 阅读(935) 评论(0) 推荐(0) 编辑
摘要: 一、打开File > Settings... 二、设置并apply 三、创建类,即可看到效果 阅读全文
posted @ 2020-05-19 10:23 农名工进城 阅读(3471) 评论(1) 推荐(1) 编辑
摘要: //检测移动设备型号 var ua = navigator.userAgent.toLowerCase(); console.log('ua:'+ua); if(/iphone|ipad|ipod/.test(ua)) { //苹果手机 console.log('ios系统'); }else if( 阅读全文
posted @ 2020-05-14 17:14 农名工进城 阅读(703) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="initial-scal 阅读全文
posted @ 2020-05-13 17:41 农名工进城 阅读(573) 评论(0) 推荐(0) 编辑
摘要: // 根据经纬度获得详细地址 function getPositionByLonLats(lng, lat) { // console.log("经度:"+lng+"纬度"+lat); var lnglatXY = [lng, lat];// 地图上所标点的坐标 AMap.service('AMap 阅读全文
posted @ 2020-05-13 17:38 农名工进城 阅读(11295) 评论(0) 推荐(0) 编辑
摘要: package utils; import javax.crypto.Cipher; import java.security.*; import java.security.interfaces.RSAPrivateKey; import java.security.interfaces.RSAP 阅读全文
posted @ 2020-05-13 16:22 农名工进城 阅读(446) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页