liferay 编码风格

1、  单个JSP文件直接用.JSP后缀;包含多个JSP文件的JSP文件用 .JSPF后缀

<%@ includefile="/html/portlet/journal/article_search_results.jspf" %>

2、  在JS文件中使用单引号

confirm('<%=UnicodeLanguageUtil.get(pageContext,"are-you-sure-you-want-to-delete-the-selected-feeds")%>')

3、  使用字段集合将input输入框包裹起来

<form action="..." method="post">

<fieldset class="orchardClass">

<legend>Orchard Fruits</legend>

<label for="<portlet:namespace/>apple">Apple</label>

<input name="<portlet:namespace/>apple" type="text" value="1" />

<label for="<portlet:namespace/>orange">Orange</label>

<input name="<portlet:namespace/>orange" type="text" value="2" />

<input type="submit"value="<liferay-ui:message key="pick" />" />

</fieldset>

</form>

4、  使用Liferay内置的分隔符

<div class="separator"><!-- --></div>

你可能感兴趣的:(liferay 编码风格)