(selector).css(name,value) (selector).css({properties}) (selector).css(name) (select).css(name,value) 이 함수는 선택된 엘리먼트의 name 값을 value로 변경하는 일을 합니다 . ex) $("p").css("background-color","yellow" (select).css({properties}) 이 함수는 한번에 여러개의 속성을 지정합니다 . ex) $("p").css({"background-color":"yellow","font-size":"200%"}) (selector).css(name) 이 함수는 name 에 해당하는 스트일 값을 가져 옵니다.
@RequestMapping (value="/pdf" ) public void pdfCreate(HttpServletResponse response, OutputStream outputStream){ Document document = new Document(); try { // 파일 출력 - FileOutputStream file = new FileOutputStream(new File("C:/HelloWorld.pdf")); // File Write PdfWriter.getInstance(document, file); // Stream Output PdfWriter.getInstance(document, outputStream); document.open(); // // Create our first paragraph for the pdf document to be // created. We also set the alignment and the font ...
댓글
댓글 쓰기
질문이나 의견은 요기에 남겨주세요 ^^,,