728x90
▶특정 계정으로 로그인 했을때 지정한 요소를 화면에서 숨기는 코트
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
var member_id = '${sessionMember_id}';
$(document).ready(function(){
console.log("#######")
if(member_id != 'test'){
document.getElementById('mail').style.visibility = "hidden"; // hide
}
})
1. <div>태그 요소 숨기기 보이기
document.getElementById('id').style.visibility = "hidden"; //숨기기
document.getElementById('id').style.visibility = "block"; //보이기
OR
$("#element").hide(); // hide
$("#element").show(); // show
2. test(관리자)로 로그인시
3. test아이디가아닌 일반 아이디로 로그인시
728x90
'Spring' 카테고리의 다른 글
[Spring]로그아웃 구현_ Session 값 삭제 (0) | 2022.06.28 |
---|---|
[Spring]Ajax사용 시 @ResponseBody 사용(비동기 처리) (0) | 2022.06.25 |
[SpringFramework]HttpSession 아이디 저장 및 호출 (0) | 2022.06.11 |
[Spring]Tomcat 구동부터 웹페이지 동작 까지 과정 (0) | 2022.05.25 |
[spring]스프링으로 메일 발송 하기 (0) | 2022.05.15 |
댓글