Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些旧的 jsp 代码在属性中使用 struts 标签,如下所示:
<link href="<s:url value='/styles/layout.css'/>" rel="stylesheet" type="text/css" media="all"/>
我不能让它在 jspx 文件中工作。有没有一个很好的选择来获得相同的功能而没有太多的混乱?
试试这个
<c:set var="myUrl"><s:url value='/styles/layout.css'/></c:set> <link href="${myUrl}"/>
您可能还想尝试这种形式,但我真的不记得它是否有效:
<s:url value='/styles/layout.css' var="anUrl"/> <link href="${anUrl}"/>