删除JSP变量之间的间距

时间:2016-12-06 19:09:49

标签: html jsp

这个jsp调用之间的间距有问题

<tr>    
            <%=Constants.getTextInput("", Texts.RNG_IDENT_MSG, "", "", 19)%>

            <%=Constants.getTextInput("", Texts.RNG_IDENT_MSG_UNTIL, "", "", 19)%>

</tr>   

在屏幕上,它们之间有一个空格,我想删除。 有人能帮助我吗?

P.S。我尝试过css和其他格式,但仍然没有。

P.S.2:这是在一个HTML页面和getTextInput它是一个“创建”框的功能

1 个答案:

答案 0 :(得分:3)

您可以使用指令 trimDirectiveWhitespaces

<%@ page trimDirectiveWhitespaces="true"%>

这应该删除动作,scriptlet和指令之间的空格。

这是我在Glassfish 4.0上得到的一个例子:

  

,&lt;%@ page trimDirectiveWhitespaces =&#34; true&#34;%&gt;在jsp中

<%@ page trimDirectiveWhitespaces="true"%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>

<table>


<tr>    
            <%="1111111111"%>

            <%="2222222222"%>


            <c:out value="c:out"></c:out>

            <c:out value="LOOP"></c:out>


            <c:forEach begin="1" end="5" step="1" var="y">

                ${'qqqqq'}    ${'RRR'}

                <c:out value="c:out"></c:out>   

                <% out.println("InTheLoop"); %>         

            </c:forEach>
</tr>  

</table>

</body>
</html>

在浏览器中收到的源代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>

<table>


<tr>    
            11111111112222222222c:outLOOPqqqqqRRRc:outInTheLoop
qqqqqRRRc:outInTheLoop
qqqqqRRRc:outInTheLoop
qqqqqRRRc:outInTheLoop
qqqqqRRRc:outInTheLoop

</tr>  

</table>

</body>
</html>
  

与上述相同的JSP代码,但与&lt;%@ page trimDirectiveWhitespaces =&#34; false&#34;%&gt;
  或者没有trimDirectiveWhitespaces   生成在浏览器中收到的以下代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>

<table>


<tr>    
            1111111111

            2222222222


            c:out

            LOOP




                qqqqq    RRR

                c:out   

                InTheLoop




                qqqqq    RRR

                c:out   

                InTheLoop




                qqqqq    RRR

                c:out   

                InTheLoop




                qqqqq    RRR

                c:out   

                InTheLoop




                qqqqq    RRR

                c:out   

                InTheLoop



</tr>  

</table>

</body>
</html>

所以使用trimDirectiveWhitespace =&#34; true&#34;:

  • 您可以删除操作,scriptlet,表达式,指令之间的空格。
  • 但是你不能删除其他html标签之间的空格