- 博客(6)
- 收藏
- 关注
原创 使用ajax提交form表单【文件上传】
在这里插入代码片@TOC欢迎使用Markdown编辑器<!-- 导入Excel对话框 begin--> <div id="import-dialog" class="dialog" style="height:150px;width:500px;"> <h2>文件导入</h2> <ul id="error-msg" style="display:none;width: auto;"><li></li>
2022-01-06 15:54:48
1591
原创 创建数据库出错:java.sql.SQLException: Access denied for user‘root‘@‘10.0.0.2‘ (using password:YES)启动错误记录(1)
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.2021-12-01 11:14:04.079 [main] ERROR o.s.boot.SpringApplication - Application run failedorg.springframework.beans.factory.UnsatisfiedDepende.
2021-12-01 14:23:21
480
原创 Error creating bean with name ‘flywayInitializer‘ defined in class path resourcec启动错误记录(2)
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.2021-12-01 11:25:57.765 [main] ERROR o.s.boot.SpringApplication - Application run failedorg.springframework.beans.factory.BeanCreationExcept.
2021-12-01 14:11:55
1440
原创 textarea文本域自适应内容高度
function readyNumber() {$(‘textarea’).each(function () {this.setAttribute(‘style’, ‘height:’ + (this.scrollHeight) + ‘px;overflow-y:hidden;’);}).on(‘input’, function () {this.style.height = ‘auto’;this.style.height = (this.scrollHeight) + ‘px’;})}r
2020-12-18 10:15:40
298
原创 实现与继承
实现接口继承类实现是多实现,使用逗号隔开继承是单继承实现接口关键字implements继承关键字extends接口里只能有常量和抽象方法,抽象类里可以有属性和普通方法一个类实现接口必须实现接口中的所有方法一个类继承抽象类必须重写抽象类的所有抽象方法...
2020-04-02 17:03:18
165
原创 初学js笔记
**声明变量**: var变量必须以字母开头变量也能以 $ 和 _ 符号开头(不过不推荐这么做)变量名称对大小写敏感(y 和 Y 是不同的变量)声明变量可以一次声明多个用逗号隔开例如:var a,b,c;未初始化的变量就是undefined;java script关注数值或文本,数值无需带引号,带引号则会被当做文本;**变量提升**Java Script有变量提升,简单来说就事不...
2019-10-12 14:46:42
85
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人