我有一個名爲root.jsp
的JSP頁面,因爲我有一個頁腳標籤,它取代了某些文本(即來自java端的屬性文件)。頁腳標籤本身使用基於登錄到網站的特定角色的腳本顯示。 root.jsp
有global.js
這裏包括文件的代碼片斷如何使用ceratin Javascript邏輯更新JSP頁面html元素?
**root.jsp**
<%if(role.equals("Learner")){%>
<footer>
<p id ="par1">${userAccessMsg}.</p>
<p id ="par2">${userNoFolderAccessMsg}.</p>
</footer>
<%} %>
我需要通過檢查,只顯示一個<p>
標籤如果變量folders
爲空。
**global.js**
var folders = getConfigLinkedFolders();
function getConfigLinkedFolders {
return arrayList; /*["defssfsf","hrhrhhr"] */
}
我應該怎麼做?
請不要使用小腳本!閱讀[JSTL核心](http://www.tutorialspoint.com/jsp/jstl_core_if_tag.htm)。 –