목록속성 (2)
개발 무지렁이
속성값을 쉽게 사용하기 위한 표현언어 EL(Expression Language) ${ 표현식 } jsp 2.0 ⚠️ ${null} = ⚠️ 표현식은 연산가능함, 기본적으로 변수 or 메서드 구조 🚀 표현언어 EL의 내장객체: 생략가능하지만 생략했을 시, 속성을 '좁은 범위'부터 찾기 시작한다 1) pageScope 2) requestScope 3) sessionScope 4) applicationScope: + setAttribute() / getAttribute() ⚠️ response는 Scope가 없다. 📌. empty, not empty ${empty param.id ? "Guest님" : param.id.concat("님")} // param은 생략불가능 ${not empty param.id ?..
.attr(): HTML의 속성을 다룬다. (checked, undefined) .prop(): Javascript의 프로퍼티를 다룬다. (true, false) 📕 set attr & get attr 📕 $(function() { $("button").click(function() { $("img").attr("width", "500"); // set attr alert($("img").attr("src")); // get attr }); }); [주민등록번호 차례로 입력하고, 뒷자리 첫번호에 따라 자동 check.js] $(function() { function numberCheck(obj) { let v = obj.val(); if(isNaN(v)) { // is Not a Number consol..