본문 바로가기

개발/JavaScript5

[JS] Document 객체 사용하기, html-input [type], trim http://www.tcpschool.com/javascript/js_dom_document 코딩교육 티씨피스쿨 4차산업혁명, 코딩교육, 소프트웨어교육, 코딩기초, SW코딩, 기초코딩부터 자바 파이썬 등 tcpschool.com HTML TYPE 모음 String.prototype.trim() trim() 메서드는 문자열 양 끝의 공백을 제거합니다. 공백이란 모든 공백문자(space, tab, NBSP 등)와 모든 개행문자(LF, CR 등)를 의미합니다. 2022. 6. 13.
[JS]JS/JQUERY를 이용한 NAME, CLASS 값 가져오기 https://codethief.io/ko/get-id-name-and-class-values-using-javascript-jquery/ //1. By id var name_by_id = document.getElementById("test_id").getAttribute('name'); var class_by_id = document.getElementById('test_id').ClassName; //2. By class var name_by_class = document.getElementsByClassName('test_class')[0].getAttribute('name'); var class_by_class = document.getElementsByClassName('test_class').. 2022. 5. 20.
[JS]배열 생성, 난수 생성, 후 배열 값 교체, if문으로 해당 값 적용 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice const member=10; const m = 10; const n = 1; let arr = new Array(m); for (var i = 0; i < m; i++) { arr[i] = new Array(n); for (var j = 0; j < i+1; j++) { arr[j] = "꽝"; } } const randomValue = Math.floor(Math.random() * 10 + 1); console.log(randomValue); arr.splice(randomValue, 1, "당첨"); console.log(arr) .. 2022. 5. 11.
[JS]ghost leg 참고 소스 Cargo는 Rust의 Package Manager 프로젝트로 깃에서 다운받은 파일을 실행하기 위해 다운로드했다. https://doc.rust-lang.org/cargo/getting-started/installation.html Installation - The Cargo Book The easiest way to get Cargo is to install the current stable release of Rust by using rustup. Installing Rust using rustup will also install cargo. On Linux and macOS systems, this is done as follows: curl https://sh.rustup.rs -sSf | sh .. 2022. 5. 8.
자바 국내 오픈소스 예제 모음 https://www.blueb.co.kr/ BlueB Web Store 블루비는 웹개발의 핵심 소스 및 다양한 형태의 자료를 공유하고 있습니다. 웹사이트 제작 이제는 쉽게 제작하세요 www.blueb.co.kr 2022. 5. 4.