Spring中存在很多注解组合的情况,例如**@RestController** @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented @Controller @ResponseBody public @i ...
分类:
编程语言 时间:
2020-06-24 00:48:07
阅读次数:
78
public static void partitionPdfFile(String pdfFile, String newFile, int from, int end) { Document document = null; PdfCopy copy = null; try { PdfReade ...
分类:
编程语言 时间:
2020-06-23 19:12:22
阅读次数:
94
//不起作用 $('#demo').on('click', function() { layer.msg('响应点击事件'); }); //起作用 $(document).on('click', '#demo', function() { layer.msg('响应点击事件'); }); >> .c ...
分类:
其他好文 时间:
2020-06-23 17:27:13
阅读次数:
199
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.js"></script> <script src= ...
分类:
其他好文 时间:
2020-06-23 15:56:51
阅读次数:
88
以下代码都是JavaScript实现 1.冒泡排序 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-sc ...
分类:
编程语言 时间:
2020-06-23 13:16:22
阅读次数:
48
jquery库文件 分为开发版和发布版 在页面中引用jquery <script src="js/jquery-1.12.4.js" type="text/javascript"></script> 使用jquery弹出提示框 <script> $(document).ready(function( ...
分类:
Web程序 时间:
2020-06-23 13:12:29
阅读次数:
99
公共样式 .wrapper{ width: 300px; height: 300px; background-color: chartreuse; margin-right: 30px; display: inline-block; } .content{ width: 100px; height: ...
分类:
Web程序 时间:
2020-06-23 01:26:22
阅读次数:
87
https://github.com/uma-pi1/minie https://github.com/kermitt2/grobid https://github.com/mon95/Automatic-Metadata-Extraction-from-Scientific-Documents ...
分类:
其他好文 时间:
2020-06-23 01:11:11
阅读次数:
65
1、概念: JavaScript是由网景公司推出,主要运行在浏览器客户端,实现页面交互的脚本语言,简写js。2、js的组成部分 ECMAScript(核心语法)、DOM(文档对象模型)、BOM(浏览器对象模型) 3、js注释 单行注释 // 多行注释 /* */ 4、js的引入 写js代码,需要在页 ...
分类:
编程语言 时间:
2020-06-22 23:20:53
阅读次数:
90
这个函数我没试过 不知道好不好用 function htmltotxt($document){ $search = array('@<script[^>]*?>.*?</script>@si', // Strip out javascript '@<[\\/\\!]*?[^<>]*?>@si', / ...
分类:
Web程序 时间:
2020-06-22 15:44:24
阅读次数:
64