摘要:
父子查询: 根据父 id 查询下面所有子节点数据;子父查询: 根据子 id 查询上面所有父节点数据 创建表: DROP TABLE IF EXISTS vrv_org_tab; CREATE TABLE vrv_org_tab ( id bigint(8) NOT NULL AUTO_INCREME 阅读全文
摘要:
package SSM.utils; import java.security.MessageDigest; import java.util.Calendar; import java.util.TimeZone; /** * SHA加密工具类 * @author zhouhe * @date 2 阅读全文
摘要:
按钮: {position: 'fixed',bottom: 0;} 如果 按钮覆盖了容器的内容,容器加个padding-bottom就行了 容器: {padding-bottom: 100px;} 这样的话,按钮会固定在手机屏幕的底部,如果要居中的话要设置 按钮{ margin:auto; lef 阅读全文
摘要:
引言 在电商类、阅读类、社交类等APP中经常会涉及到图片预览功能,只有用户愿意,只要点击图片便可单独的显示该图片,并且可以将图片进行放大预览,如何在APP中没有该小技巧的话,那用户体验可能会大打折扣。 实现的效果 源码 <html> <head> <meta charset="utf-8"> <ti 阅读全文
摘要:
以下为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 阅读全文
摘要:
一、打开File > Settings... 二、设置并apply 三、创建类,即可看到效果 阅读全文
摘要:
//检测移动设备型号 var ua = navigator.userAgent.toLowerCase(); console.log('ua:'+ua); if(/iphone|ipad|ipod/.test(ua)) { //苹果手机 console.log('ios系统'); }else if( 阅读全文
摘要:
<!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="initial-scal 阅读全文
摘要:
// 根据经纬度获得详细地址 function getPositionByLonLats(lng, lat) { // console.log("经度:"+lng+"纬度"+lat); var lnglatXY = [lng, lat];// 地图上所标点的坐标 AMap.service('AMap 阅读全文
摘要:
package utils; import javax.crypto.Cipher; import java.security.*; import java.security.interfaces.RSAPrivateKey; import java.security.interfaces.RSAP 阅读全文