仅当满足某些条件时才浮动 div

发布于 2024-10-28 12:55:21 字数 140 浏览 1 评论 0原文

我有一个 .jsp,根据参数,它可以有 1 或 2 个表。如果仅满足其中一个参数,我希望将表格居中。如果两个参数都满足,我想将一个表向左浮动,将另一个表向右浮动。我可以处理漂浮的部分,我只是不确定如何处理其他条件。我认为这可以通过某种“if”语句来完成......?

I have a .jsp that, based on parameters, can have 1 or 2 tables. If only one of the parameters is fulfilled I want to have the table centered. If both parameters are fulfilled I want to float one table left and float the other table right. I can take care of the floating part, I am just unsure on how to have the other condition. I would think this can be done with some sort of 'if' statement....?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难以启齿的温柔 2024-11-04 12:55:21

您很可能需要使用 的组合。

<c:choose>
  <c:when test="${conditionOne && conditionTwo}">
    <table class="tableLeft"></table>
    <table class="tableRight"></table>
  </c:when>
  <c:otherwise>
    <c:if test="${conditionOne || conditionTwo}">
      <table class="tableCenter"></table>
    </c:if>
  </c:otherwise>
</c:choose>

希望这有帮助。

You'll most likely need to use a combination of <c:choose /> and <c:if />.

<c:choose>
  <c:when test="${conditionOne && conditionTwo}">
    <table class="tableLeft"></table>
    <table class="tableRight"></table>
  </c:when>
  <c:otherwise>
    <c:if test="${conditionOne || conditionTwo}">
      <table class="tableCenter"></table>
    </c:if>
  </c:otherwise>
</c:choose>

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文