전체 글 썸네일형 리스트형 html font color HTML CSS : font-color, font-face 는 없다. 1. IE7을 포함하여, font-color 가 사용될 경우 무시된다. 지원 x 스타일 시트에서는 font-color 가 아닌 그냥 color 를 사용해야 한다. 2. 폰트를 지정하면서 font-face 를 사용하면 역시 스타일이 무시된다. 스타일 시트에서는 font-family 를 사용한다. 더보기 foreach문이란? foreach 응용 ## FOREACH 문 .each()함수는 jQuery 객체의 수만큼 for 문 같이 반복을 해주는 함수입니다. $('input', $('#TABLE명')).each(function () { // TABLE명이라는 id를 가진 table 안에 모든 input만큼 each를 실행 $(this).attr("disabled", "disabled"); //모든 input 속성을 disabled 시킨다. if ( ($(this).attr("id") == "AAA")||($(this).attr("id") == "BBB") ) { $(this).removeAttr("disabled"); } }); 더보기 mssql xml atteibute 속성 변경 *mssql xml attribute 변경 xml 속성변경 UPDATE [table명] SET [xml이 저장되어있는 컬럼명].modify('replace value of (/xmlA/@변경할 속송명)[1] with "변경할 내용"') 더보기 이전 1 ··· 14 15 16 17 18 다음