摘要:
可以settings-general-auto import-java项,勾选optimize imports on the fly,在当前项目下会自动清除无效的import,而且这个是随时自动清除的。 参考资料1、使用idea一次性清理所有java文件中多余导入未使用的包 http://blog. 阅读全文
摘要:
1.CTRL + SHIFT + A --> 查找Registry --> 找到并勾选compiler.automake.allow.when.app.running 2. FILE - SETTING - Build - Compiler - bulid project automatically 阅读全文
摘要:
字符十进制转义字符 " " " & & & < < < > > > 不断开空格(non-breaking space)   阅读全文
摘要:
$(document).ready(function (){//通用方法去输入框前后空格 $("form").on("change",function () { $("form input[type=text]").each(function () { this.value=$.trim(this. 阅读全文
摘要:
var content=$("content").val(); if(!content){ alert("请输出内容!"); return; } //上述内容相当于判断content=""、content=null、content = undefined、content=0 或者也可以if(cont 阅读全文
摘要:
onkeyup="this.value=this.value.replace(/[^\w]/g,'')" onpaste="this.value=this.value.replace(/[^\w]/g,'')" 阅读全文
摘要:
chmod是权限管理命令change the permissions mode of a file的缩写。。 u代表所有者,x代表执行权限。 + 表示增加权限。 chmod u+x file.sh 就表示对当前目录下的file.sh文件的所有者增加可执行权限。 阅读全文