过去一个小时我一直在网上搜索,但我看不到如何将 css 文件添加到<head>
页面元素。
假设我有一个名为 shopping.jsp 的 jsp。在其中我有条件地包含一个名为 products.tag 的 jsp 标记文件。
我希望 products.jsp 指定一个 css 文件以添加到页面的 head 元素。如何才能做到这一点?
编辑
为了示例,此代码被简化。
// shopping.jsp
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib prefix="t" tagdir="/WEB-INF/tags" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<t:standard_page>
<jsp:body>
<t:products product="${product}"/>
</jsp:body>
</t:standard_page>
// products.tag
// I want to specify a css file in this tag file that will get added to the <head> element of the webpage
<%@tag description="Template for products on the shopping cart page" pageEncoding="UTF-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@tag import="com.myapp.Product" %>
<%@attribute name="product" required="true" type="com.myapp.Product"%>
<div class="shopping-cart-row">
<div class="product-name">${product.name}</div>
<div class="product-quantity">${product.quantity}</div>
</div>