shuffle.jsp

来自「一个java写的加密算法」· JSP 代码 · 共 74 行

JSP
74
字号
<%-- Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved. Use is subject to license terms.--%><%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %><%@ taglib prefix="my" uri="http://jakarta.apache.org/tomcat/jsp2-example-taglib"%><fmt:setBundle basename="LocalStrings"/><html>  <head>    <title><fmt:message key="shuffle.jsp.title"/></title>  </head>  <body>    <h1><fmt:message key="shuffle.jsp.title"/></h1>    <hr>    <p><fmt:message key="shuffle.jsp.overview"/></p>    <hr>    <blockquote>     <font color="#ffffff">      <table>        <my:shuffle>          <jsp:attribute name="fragment1">            <tr>              <my:shuffle>                <jsp:attribute name="fragment1">                  <my:tile color="#ff0000" label="A"/>                </jsp:attribute>                <jsp:attribute name="fragment2">                  <my:tile color="#00ff00" label="B"/>                </jsp:attribute>                <jsp:attribute name="fragment3">                  <my:tile color="#0000ff" label="C"/>                </jsp:attribute>              </my:shuffle>            </tr>          </jsp:attribute>          <jsp:attribute name="fragment2">            <tr>              <my:shuffle>                <jsp:attribute name="fragment1">                  <my:tile color="#ff0000" label="1"/>                </jsp:attribute>                <jsp:attribute name="fragment2">                  <my:tile color="#00ff00" label="2"/>                </jsp:attribute>                <jsp:attribute name="fragment3">                  <my:tile color="#0000ff" label="3"/>                </jsp:attribute>              </my:shuffle>            </tr>          </jsp:attribute>          <jsp:attribute name="fragment3">            <tr>              <my:shuffle>                <jsp:attribute name="fragment1">                  <my:tile color="#ff0000" label="!"/>                </jsp:attribute>                <jsp:attribute name="fragment2">                  <my:tile color="#00ff00" label="@"/>                </jsp:attribute>                <jsp:attribute name="fragment3">                  <my:tile color="#0000ff" label="#"/>                </jsp:attribute>              </my:shuffle>            </tr>          </jsp:attribute>        </my:shuffle>      </table>     </font>    </blockquote>  </body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?