728x90
반응형

Front/JS & jQuery 438

[js] 정규표현식

https://choseongho93.tistory.com/130 [Regex]정규표현식 기초 ( 정의 및 문자별 의미 ) / 자주 사용하는 정규표현식 ● 정규 표현식이란? : 문자열을 바탕으로 검색해 패턴과 일치하는지 조사하고, 분할하는 문자열 처리 방법입니다. * 문자 클래스를 정의할 때 대괄호 안에 사용하는 메타 문자 메타 문자 설명 / nanbuja.com https://developer.mozilla.org/ko/docs/Web/JavaScript/Guide/Regular_expressions 정규 표현식 - JavaScript | MDN 정규 표현식, 또는 정규식은 문자열에서 특정 문자 조합을 찾기 위한 패턴입니다. JavaScript에서는 정규 표현식도 객체로서, RegExp의 exec() ..

Front/JS & jQuery 2023.12.01

[js] .includes()

https://imswengineer.tistory.com/405 [js] String.includes ( 문자열 포함 체크 ) https://www.codingfactory.net/10899 JavaScript / Object / String.includes() / 특정 문자열을 포함하는지 확인하는 메서드 .includes() .includes()는 문자열이 특정 문자열을 포함하는지 확인하는 메서드이다. IE는 Edge부 imswengineer.tistory.com String 에서도 쓰고, -> 문자열이 특정 문자열을 포함하는지 확인하는 메서드 https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/incl..

Front/JS & jQuery 2023.11.28

[jQuery] resizable 이용하여 테이블 컬럼 너비 조정하기

https://codepen.io/clarmond/pen/bdapme Resizable Table Columns Using jQuery UI I was having trouble resizing table columns. All of the solution I found would work until my table was larger than my viewport, then they failed. I f... codepen.io https://www.codehim.com/others/make-table-columns-resizable-with-jquery/ Make Table Columns Resizable with jQuery — CodeHim A light weight jQuery plugin to..

Front/JS & jQuery 2023.10.24

[datatables] createdCell로 tr에 Class 적용하기

createdCell : function(td,cellData, rowData, row, col){ if(!rowData['rdYn']){ $(td).closest('tr').addClass('bg-ylwbg'); $(td).closest('tr').find('td').addClass('bold'); } } 리스트목록 중에 읽음여부가 true 이면 tr의 배경색과 안에 글씨를 두껍게 바꿔야하는데, 모든 td에 효과를 줘야하는데 createdCell을 적요한 컬럼 뒤에는 해당 함수가 적용이 안되는것이었다. cellData로 하지 않고 rowData로 설정하여 맨 마지막 컬럼에 createCell 을 쓰니까 모든 컬럼에 효과가 다적용되었다!

Front/JS & jQuery 2023.10.23
728x90
반응형