- 博客(13)
- 收藏
- 关注
原创 使用D3.js实现简单的图谱展示
<html> <head> <script src="https://d3js.org/d3.v4.min.js"></script> <script src="http://code.jquery.com/jquery-2.1.1.min.js"></script> <style> html,body,#kgDiv{ .
2020-05-08 19:39:26 1905 2
原创 web端选择城市
效果图2.代码<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script><script>CityInfo=[ {value: 1, label: '北京', children: [ {value: 1, label: '北京市', ch...
2019-05-23 11:48:57 3734 3
原创 img图片加载失败时,展示默认图片的方法
1、 图片加载失败时会触发onerror事件,可以通过onerror事件使默认图片代替加载失败的图片<img src="要展示的图片的地址" onerror="this.src='默认图片的地址'">2、如果默认图片也加载失败时,那么onerror事件会被循环触发,导致打开网页错误解决方案:保证默认图片一定能加载成功只执行onerror事件一次。<img src...
2019-05-23 10:36:10 8128 2
原创 angularjs简单的翻页模板
1、css/**分页样式 */.pageTurning{ width: 700px; height: 30px; margin: 20px auto;} .pageTurning a{ height: 30px; width: 35px; background-color:white; color: #666666; bo...
2019-04-10 11:02:55 521
原创 原生js请求http接口
<script> //obj :{method:"get",url:"",data:{}}; function httpRequest(obj,successfun,errFun){ var xmlHttp = null; //创建 XMLHttpRequest 对象,老版本的 Internet Explorer (IE5 和 IE6)使用 ActiveX 对象:xmlht...
2019-03-29 10:37:19 17452
转载 spring boot项目打成war包
1 pom文件中将打包形式 jar 修改为war <packaging>war</packaging>2 不使用自带的tomcat<dependency> <groupId>org.springframework.boot</groupId> <artifactId>sp...
2018-09-18 18:13:22 226
转载 maven将本地jar添加到本地maven仓库。
mvn install:install-file -Dfile=jar包的位置 -DgroupId=jar包的groupId -DartifactId=jar包的artifactId -Dversion=jar包的version -Dpackaging=jar
2018-06-14 15:56:32 192
原创 Java获取最近几天时间。
Calendar now = Calendar.getInstance();List<String> dates = new ArrayList<>();Long oneDay = 86400000L;//一天是这些毫秒。Long day = now.getTimeInMillis();//获取当前日期的毫秒数。for(int i = 0;i < warnin...
2018-05-15 09:47:57 1647
转载 史上最全的maven pom.xml文件教程详解
史上最全的maven pom.xml文件教程详解[xml] view plain copy<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache...
2018-05-08 16:40:21 232
原创 react-native使用gif图片在安卓系统下不动的解决方法
只需要在android/app/build.gradle 中的dependencies中添加// For animated GIF supportcompile 'com.facebook.fresco:animated-gif:0.13.0'然后用<Image source={require(‘./image.gif’)} ></Image> 使用该gif图就可以了。...
2018-05-07 16:19:55 3020 3
转载 mybatis-config.xml配置文件 详细。
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration>
2018-05-04 19:29:10 588
转载 Maven有时下载Jar包失败会生成一些lastUpdate文件,导致无法下载jar包,快速删除的方法
Maven有时下载Jar包失败会生成一些lastUpdate文件,导致无法下载jar包,快速删除的方法:rem PATH = Maven仓库路径 set PATH=C:\Users\Administrator\.m2\repositoryrem 正在搜索... for /f "delims=" %%i in ('dir /b /s "%PATH%\*lastUpdated*"') do ( ...
2018-05-04 19:27:51 2061 1
原创 Java读写文件
public static void readFile(String filePath) throws IOException { File file = new File(filePath); BufferedReader br = new BufferedReader(new FileReader(file)); String r = null; while (...
2018-05-04 19:26:13 276
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人