TestTV20.jsp
上传用户:sxychgz
上传日期:2019-04-21
资源大小:4772k
文件大小:1k
源码类别:

电子政务应用

开发平台:

Java

  1. <%@page pageEncoding="GB18030"%>
  2. <%@page import="com.bjsxt.shopping.category.*, java.util.*"%>
  3. <%
  4. List<Category> categories = CategoryService.getInstance().getCategories();
  5. %>
  6. <html>
  7. <head>
  8. <script language="javascript" src="script/TV20.js"></script>
  9. </head>
  10. <body>
  11. <script language="javascript">
  12. <!--
  13. addNode(-1,0,"所有类别","../images/top.gif");
  14. <%
  15. for(Category c : categories) {
  16. %>
  17. addNode(<%=c.getPid() %>,<%=c.getId()%>,"<%=c.getName() %>","../images/top.gif");
  18. <%
  19. }
  20. %>
  21.   
  22. showTV();
  23. -->
  24. </script>
  25. </body>
  26. </html>