Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- selectoptions
- selectedIndex
- Math.floor()
- SUB함수
- 파일질라다운로드
- 파일질라설치오류
- 증가값
- Parent
- Git
- 주석이 먹히지 않을 때
- Math.round()
- 파일질라설치
- ctrl+/
- FileZilla설치
- push오류
- FileZilla다운로드
- calc.minus
- 1521
- Excel
- toFixed()
- removeClass
- Math.ceil()
- excel중복체크
- index %
- is_check
- calc.plus
- addClass
- 소스트리인증실패
- slideUp
- hide
Archives
- Today
- Total
잡동사니에도 사랑을
[21.10.06] elTest.jsp(el) 본문
728x90
반응형
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body> <!-- body가 table의 부모 -->
<table border="1" width="50%"> <!-- 화면의 반을 차지 -->
<tr>
<th width="50%">표현식</th>
<th width="50%">값</th>
</tr>
<tr>
<td align="center">\${25+3 }</td>
<td align="center">${25+3 }</td>
</tr>
<tr>
<td align="center">\${25/3 }</td>
<td align="center">${25/3 }</td>
</tr>
<tr>
<td align="center">\${25 div 3 }</td>
<td align="center">${25 div 3 }</td>
</tr>
<tr>
<td align="center">\${25 % 3 }</td>
<td align="center">${25 % 3 }</td> <!-- 정수형 실수형 구별 안함 -->
</tr>
<tr>
<td align="center">\${25 mod 3 }</td>
<td align="center">${25 mod 3 }</td>
</tr>
<tr>
<td align="center">\${25 gt 3 }</td>
<td align="center">${25 gt 3 }</td>
</tr>
<!-- gt(>), lt(<), ge(>=), le(<=), eq(==), ne(!=) -->
<tr>
<td align="center">\${header['host'] }</td>
<td align="center">${header['host'] }</td> <!-- JSON에서 많이 쓰이니 잘 기억해라 -->
</tr>
<tr>
<td align="center">\${header.host }</td>
<td align="center">${header.host }</td>
</tr>
</table>
</body>
</html>
728x90
반응형
'JAVA_EE > EL-JSTL' 카테고리의 다른 글
[21.10.07] jstlExam / jstlTest(jstl) (0) | 2021.10.07 |
---|---|
[21.10.07] start.jsp / sendProc / sendResult / forwardProc / forwardResult(exam) - 페이지 이동(sendRedirect 와 forward 이용) (0) | 2021.10.07 |
[21.10.06] image.jsp / today.jsp / main.jsp(exam) (0) | 2021.10.07 |
[21.10.06]elInput2.jsp / elResult2.jsp(el) (0) | 2021.10.07 |
[21.10.06]elInput.jsp / elResult.jsp(el) (0) | 2021.10.07 |