Eclipse代码格式化设置简单介绍
程序员文章站
2024-02-20 08:34:46
自用项目中统一eclipse格式化java、javascript、jsp、html代码设置
1.window->preferences
//java 格...
自用项目中统一eclipse格式化java、javascript、jsp、html代码设置
1.window->preferences //java 格式化 2.java->code style->formatter->new->edit->line wrapping 3.maximum line width = 180 4.set line width for preview window = 180 //javascript 格式化 5.javascript->code style->formatter->new->edit->line wrapping 6.maximum line width = 180 7.set line width for preview window = 180 8.tab标签页->comments 9.maximum line width for comments = 180 //jsp|html页面 格式化 10.web->html files->editor line width = 180 inline elements 选中所有-> remove
格式化前:
<script> $("#loginbtn") .click( function() { $ .ajax({ url : "/test/userinfo/login", type : 'post', datatype : 'json', data : { useraccount : $("#useraccount") .val(), password : $("#password").val() }, success : function(data, textstatus, xhr) { window.location.href = "/test/userinfo/userlogin"; }, error : function(xhr, textstatus, errorthrown) { //alert("登录异常请重新登录") $.messager.show({ title : '提示', msg : '登录异常请重新登录', }); }, complete : function() { // $yr.closemask(); } }); }); </script>
格式化后:
<script> $("#loginbtn").click(function() { $.ajax({ url : "/test/userinfo/login", type : 'post', datatype : 'json', data : { useraccount : $("#useraccount").val(), password : $("#password").val() }, success : function(data, textstatus, xhr) { window.location.href = "/test/userinfo/userlogin"; }, error : function(xhr, textstatus, errorthrown) { //alert("登录异常请重新登录") $.messager.show({ title : '提示', msg : '登录异常请重新登录', }); }, complete : function() { // $yr.closemask(); } }); }); </script>
总结
以上就是本文关于eclipse代码格式化设置简单介绍的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站:java源码解析之typevariable详解、java探索之hibernate主键生成策略详细介绍等,如有不足之处,欢迎留言参考。感谢朋友们对本站的支持!