Paragraph 1 Paragraph 2 Paragraph 3 Heading 1 Paragraph 4 Paragraph 5 jQuery Element Selectors(요소 선택자) $("p") selects all elements. $("p.intro") selects all elements with class="intro". $("p#demo") selects all elements with id="demo". jQuery Atrribute Selectors(속성 선택자) $("[href]") select all elements with an href attribute. $("[href='#']") select all elements with an href value equal to "#". $("..
.container { display: flex; justify-content: center; align-items:center; } With flexbox, you can set the parent container's display property to flex, and then use justify-content:center and align-items:center to horizontally and vertically align the image within its parent container.
@keyframes blink { 0% { background-color: red; } 50% { background-color: blue; } 100% { background-color: red; } } td { animation: blink 3s infinite; } @keyframes blink { 0% { background-color: red; } 50% { background-color: blue; } 100% { background-color: red; } } td { animation: blink 1s; }
Callback 함수(function)의 핵심은 함수(function)를 파라미터(parameter)로 전송 할 수있다는 것이다. 1. 함수(function)를 파라미터(parameter)로 전송하고 2. 전송 받은 함수(function)를 실행한다는 것이다. function fetchData(callback) { // Simulating an asynchronous operation (e.g., fetching data from a server) setTimeout(function() { const data = 'Sample data'; const test = "soem text"; callback(data, test); // Invoke the callback function with the fetc..
이 함수는 둘 이상의 문자열 값을 엔드투엔드 방식으로 연결하거나 조인한 결과 문자열을 반환합니다. SELECT CONCAT ( 'Happy ', 'Birthday ', 11, '/', '25' ) AS Result; Result ------------------------- Happy Birthday 11/25 (1 row(s) affected) 실전 예제 select string_agg(concat(pis.sku_no, '(', pis.sku_qty, ')'), ', ') from table_name as pis with(nolock)
Web.config DbContext using Microsoft.EntityFrameworkCore; namespace MyApp { public class MyContext :DbContext { public MyContext(DbContextOptions options) : base(options) { } public DbSet Users { get; set; } public DbSet Products { get; set; } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { optionsBuilder.UseSqlServer(Configuration["connectionStrings:MyContext"]);..
.NET using System; using System.Web.Script.Serialization; namespace JsonDeserializationExample { class Program { static void Main(string[] args) { decimal volumeWidth; string volumeInfo = "{\"width\": 10, \"length\": 10, \"height\": 10}"; System.Web.Script.Serialization.JavaScriptSerializer serializer = new System.Web.Script.Serialization.JavaScriptSerializer(); var volumeJson = serializer.Deser..
Promise는 자바스크립트에서 비동기 작업을 처리하기 위한 객체입니다. 비동기 작업은 결과가 언제 도착할지 확신할 수 없는 작업을 의미하며, 예를 들어 서버에서 데이터를 가져오거나 파일을 읽는 작업 등이 해당됩니다. Promise는 이런 비동기 작업을 더 효율적으로 처리하고 결과를 다루기 위한 패턴을 제공합니다. // Promise를 사용하여 비동기적으로 숫자를 제곱하는 함수 function squareNumberAsync(number) { return new Promise((resolve, reject) => { if (typeof number !== 'number') { reject('Input is not a number'); // 오류 처리 } else { setTimeout(() => { co..
JSON은 "JavaScript Object Notation"의 약자로, 데이터 교환을 위해 사용되는 경량의 데이터 형식입니다. JSON.stringify(value[, replacer[, space]]) const person = { name: "John", age: 30, city: "New York" }; const jsonString = JSON.stringify(person); console.log(jsonString); {"name":"John","age":30,"city":"New York"} // replacer 옵션과 space 옵션 사용 예제 const person = { name: "John", age: 30, city: "New York", sensitiveInfo: "This sh..
- Total
- Today
- Yesterday
- java-개발 환경 설정하기
- 메이븐(maven)
- java.sql
- docker
- 진수 변환
- MainActor
- await
- System.Diagnostics
- 람다식(lambda expression)
- .submit()
- jstl(java standard tag library)-core
- 스프링 프레임워크(spring framewordk)
- 스프링 프레임워크(spring framework)
- nl2br
- jstl(java standard tag library)
- system.io
- 표현 언어(expression language)
- jsp 오픈 소스
- 문자 자르기
- 제품 등록
- 스프링 시큐리티(spring security)-http basic 인증
- 인텔리제이(intellij)
- React
- 스프링 시큐리티(spring security)
- error-java
- java web-mvc
- java 키워드 정리
- In App Purchase
- 특정 문자를 기준으로 자르기
- REST API
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |