목록분류 전체보기 (556)
른록노트
참고사이트http://huskdoll.tistory.com/337
XHTML찾아보기 CSS.fileBox .fileName {display:inline-block;width:190px;height:30px;padding-left:10px;margin-right:5px;line-height:30px;border:1px solid #aaa;background-color:#fff;vertical-align:middle}.fileBox .btn_file {display:inline-block;border:1px solid #000;width:100px;height:30px;font-size:0.8em;line-height:30px;text-align:center;vertical-align:middle}.fileBox input[type="file"] {position:abso..
outline:none;이 속성을 사용하면 인풋박스의 테두리가 보이지 않습니다.
function bytesToSize(bytes) { var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB']; if (bytes == 0) return '0 Byte'; var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024))); return Math.round(bytes / Math.pow(1024, i), 2) + ' ' + sizes[i]; };참고사이트https://stackoverflow.com/questions/15900485/correct-way-to-convert-size-in-bytes-to-kb-mb-gb-in-javascript
text-overflow: ellipsis;이 속성을 붙이면 ...으로 내용이 남아있다고 보여줍니다. 참고사이트http://webisfree.com/2015-08-17/[css]-text-overflow-%ED%85%8D%EC%8A%A4%ED%8A%B8%EA%B0%80-%EB%A7%8E%EC%9D%80-%EA%B2%BD%EC%9A%B0-%EC%83%9D%EB%9E%B5%EA%B8%B0%ED%98%B8%EB%A1%9C-%EB%B3%B4%EC%97%AC%EC%A3%BC%EA%B8%B0
참고사이트 https://codepen.io/parthviroja/pen/jPdZoM
contains 함수를 쓰면 해당 문자열에 매개변수안에 있는 문자열이 포함되어 있으면 true 없으면 false를 반환함. contains:두개의 String을 비교해서 비교대상 String을 포함하고 있으면true, 다르면 false를 반환한다. String str1 = "abcd";String str2 = "c";boolean contains = str1.contains(str2);System.out.println("contains: " + contains);결과값:true 참고사이트http://sks3297.tistory.com/entry/%EC%9E%90%EB%B0%94-%EB%AC%B8%EC%9E%90%EC%97%B4-%ED%95%A8%EC%88%98
var checkRow ="";$('input:checkbox:not(:checked)').each(function(){checkRow = checkRow + $(this).val()+",";});checkRow = checkRow.substring(0,checkRow.lastIndexOf(",");console.info(checkRow); 참고사이트https://api.jquery.com/not-selector/