11 2020 档案
摘要:function requestFullscreen(element) { if(element.requstFullscreen) {//w3c element.requstFullscreen(); } else if(element.mozRequestFullScreen) {//firef
阅读全文
摘要:Calendar cd = Calendar.getInstance(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.US); sdf.setTimeZone(TimeZone.getTimeZ
阅读全文
摘要:在pom中添加<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests>
阅读全文
摘要:创建表 //创建表createTablevoid createTable(String table); <update id="createTable" > CREATE TABLE `${table}` ( id int(11) NOT NULL AUTO_INCREMENT COMMENT '车
阅读全文