목록JavaScript (37)
Mi Lugarcito
판매할 가격 선택 @php $types = array( 'is_month' => '월세', 'is_rental' => '전세', 'is_sale' => '매매', ); @endphp @foreach($types as $key => $val) {{$val}} @endforeach 월세정보 월세 보증금 만원 월 임대료 만원 월세 관리비 만원 관리비 포함 여부 미포함 포함 금액미정 전세정보 전세 보증금 만원 전세 관리비 만원 관리비 고정금액 여부 금액고정 별도산출 금액미정 매매정보 매매가 만원 포함된 융자금액 만원 //매물가격 CheckBox show & non-show jQuery(document).ready(function($){ $(".toggleCheck").find("input[type=checkbo..
{{XeFrontend::js('assets/vendor/jqueryui/jquery-ui.min.js')->load() }} {{XeFrontend::css('assets/vendor/jqueryui/jquery-ui.min.css')->load()}} {{xe_trans($config->get('label'))}} 입주 날짜 선택 즉시 입주 날짜 협의 {{ xe_trans($config->get('label')) }} 선택 get('date_type') != 'single') style="float:left; width:50%; padding-right:10px;" @endif>
@php $types = array( 'is_month' => '월세', 'is_rental' => '전세', 'is_sale' => '매매', ); @endphp @foreach($types as $key => $val) {{$val}} @endforeach //체크박스 $("input:checkbox").change(function(){ if(this.checked){ $(this).attr('value', 'Y'); }else{ $(this).attr('value', 'N'); } });
판매할 유형 선택 @foreach($is_type as $key => $val) {{$val}} @endforeach 아파트/빌라 평수 입력 평 면적 입력 ㎡ 원룸 원룸 유형 선택 원룸 유형을 선택합니다. @foreach($type_O as $key => $val) {{$val}} @endforeach 면적 입력 ㎡ 주택 평수 입력 평 면적 입력 ㎡ 기타 상업용 기타 상업용 부동산은 전화상담 이후 등록이 가능합니다. 1577-6749 //매물유형 RadioBox show & non-show function updateField(obj,target_id){ $(".mmoa_type_field").addClass('d-none'); $("#mmoa_" + target_id).removeClass('d-non..
인스턴스 메서드를 만들어서 this를 사용하는 경우 function 키워드를 써줘야 한다. 그래야 자신이 속한 객체, 여기서는 this가 userSchema 도큐먼트를 가르킨다. 즉, 화살표 함수랑 일반 함수에서 this의 바인딩 차이점이 있다 (Arrow functions explicitly prevent binding this, so this method will not have access to the document and the above example wil not work!) ryusm.tistory.com/15 자바스크립트 THIS 일반 함수와 화살표 함수의 차이 This 정재남 님의 인프런 강좌, JS FLOW를 참고 하여 정리했습니다. This Binding 은 실행 콘텍스트가 활성화 ..
velog.io/@godori/DOM%EC%9D%B4%EB%9E%80-%EB%AC%B4%EC%97%87%EC%9D%B8%EA%B0%80 DOM이란 무엇인가? DOM MDN 에서 말하는 DOM의 정의는 다음과 같습니다. > 문서 객체 모델(The Document Object Model, DOM) 은 HTML, XML 문서의 프로그래밍 interface이다. 그래서 DOM이 정확히 뭐라고요? 옳은 것을 모두 골라보세요. velog.io webclub.tistory.com/218 자바스크립트 DOM 이란 DOM(Document Object Model) 자바스크립트를 세분화하자면 4가지 요소로 구성되어 있습니다. 자바스크립트 Core 문법 기본 문법과 구조, 데이터타입, 조건문, 반복문, 함수, 객체, 클래스(..
hae-ong.tistory.com/17 [JavaScript] ES6 Rest Parameter Rest Parameter란? Rest 파라미터(Rest Parameter, 나머지 매개변수)는 매개변수 이름 앞에 세개의 점 ... 을 붙여서 정의한 매개변수를 의미한다. Rest 파라미터는 함수에 전달된 인자(argument)들의 목록을 hae-ong.tistory.com developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax#spread_in_object_literals Spread syntax (...) - JavaScript | MDN Spread syntax (...) Spread syntax (...) a..
json.parser.online.fr/ jsonlint.com/ The JSON Validator JSONLint is the free online validator and reformatter tool for JSON, a lightweight data-interchange format. jsonlint.com www.jsonschema2pojo.org/ jsonschema2pojo Reference properties For each property present in the 'properties' definition, we add a property to a given Java class according to the JavaBeans spec. A private field is added to ..
heropy.blog/2019/02/28/blob/ Blob(블랍) 이해하기 JavaScript에서 Blob(Binary Large Object, 블랍)은 이미지, 사운드, 비디오와 같은 멀티미디어 데이터를 다룰 때 사용할 수 있습니다. 대개 데이터의 크기(Byte) 및 MIME 타입을 알아내거나, 데이터를 송수신 heropy.blog
es6.js //Shorthand property names { const selene1 = { name:'Selene', age :'18' }; const name='Selene'; const age = '18'; const selene2={ name : name, age : age }; const selene={ name, age }; } //Destructuring assignment { //object const student ={ name:'selene', level : 1 }; { const name = student.name; const level = student.level; console.log(name, level); } { const{name, level} = student; cons..