08 2016 档案
java中this 关键字的使用
摘要:在方法中定义使用的this关键字,它的值是当前对象的引用.也就是说你只能用它来调用属于当前对象的方法或者使用this处理方法中成员变量和局部变量重名的情况.而且,更为重要的是this和super都无法出现在static 修饰的方法中,static 修饰的方法是属于类的,该方法的调用者可能是一个类,而
阅读全文
kendo模板 Uncaught Error: Invalid template:' 报错
摘要:I was having a problem with a grid toolbar template because of a # in a hrefWorked out that I needed to excape the # with \\\ and not \\<script type="
阅读全文
spring开发的总结
摘要:1,当出现无法创建bean,( Error creating bean with name 'fileUploadService': Injection of resource dependencies failed; nested exception is org.springframework.
阅读全文
html 中自动换行的实现方式
摘要:1,<div type="word-wrap: break-word;word-break:break-all;"> </div> 2, <div type="white-space:normal; width:200px;“> </div> 或 <div id="wrap">正常文字的换行(亚洲文
阅读全文