随笔分类 - html
摘要:在index页面加入以下js即可: <script> history.go(1); </script> 例如: <html> <head> <title>系统首页</title> <script language='javascript'> history.go(1); </script> <met
阅读全文
摘要:一、代码生成静态文档<!-- swagger生成接口API --> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.6.0</version> </
阅读全文
摘要:比如百度的分享代码<div id="bdshare" class="bdshare_t bds_tools get-codes-bdshare">已经定义好了CSS,我想用自己的CSS,但是去掉bdshare_t bds_tools get-codes-bdshare,分享代码就失效了,我想让bds
阅读全文
摘要:页面上一个button,点击之后触发一个function去请求数据,返回 pdf/epub 的URL,然后下载这个文件. 本来是直接用 a 写的,href里放资源地址,target设为'_blank'效果良好.但这样所有的资源都会直接暴露而且不方便统计,所以就换用上面的方式. js构造a标签,js触
阅读全文