일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Selectbox
- 문자열자르기
- Python
- 확장자
- Postfix
- Oracle
- SVN
- 부모창
- JavaScript
- centos
- docker
- replace
- jQuery
- MySQL
- RabbitMQ
- Eclipse
- yum
- php
- TextBox
- smarty
- i18n
- 한글 깨짐
- 천단위
- TPL
- mariadb
- install
- 일괄변경
- random
- ubuntu
- Today
- Total
목록JavaScript (9)
wilson's story
$(document).keyup(function (e) { //console.log("e.keyCode--", e.keyCode) // e.keyCode = 40 : 방향키 아래 // e.keyCode = 38 : 방향키 위 //imageView 레이어 팝업에 'visible' class 값이 있으다면 if($("#imageView").hasClass("visible") === true) { // 키보드 방향키 위, 아래 값이 들어올때 if(e.keyCode == 40 || e.keyCode == 38){ // imageList 목록에 데이터값(li) 이 존재 할때 if($("#imageList").children('li').length >0){ let liData = $("#imageList").chi..
var lastDay = ( new Date( 년도입력, 월입력, 0) ).getDate();
var result = Math.floor(Math.random() * 10) + 1; document.write(result); Math.floor(Math.random() * 100) + 1; //이렇게 하면, 1에서 100까지 나옴 Math.floor(Math.random() * 10); //이렇게 하면, 0에서 9까지 나옴 // Math.floor() 대신 Math.round()를 사용하여 정수화하면 안된다 // Math.round()를 사용하면 1~10까지 나오는 것이 아니라 1~11까지 나오게 됩니다.
// selectbox selected for (i = 0; i < document.getElementById("test").options.length; i++) { if (document.getElementById("test").options[i].value == "비교값이 들어감") { document.getElementById("test").options[i].selected = "selected"; } }
방법은 2가지가 있다.. 각자 맞는 스타일로 작성하면 된다. //--- 방법: 1 --------------------- for (m = 0; m < pointFileSplit.length; m++) { var pointCount = m.toString(10); var optionID = "opt" + pointCount; var optionCheck = document.getElementById (optionID); if (optionCheck.selected == true) { //option을 선택하면 true var selectValue = optionCheck.value; var selectText = optionCheck.text; } } //--- 방법: 2 ------------------..
javascript 을 이용 하여 modal popup 을 이용할수 있다 부모창 /* 일반 팝업 */ function nomalPopup(){ var site = "./modalPopup.html"; var style = 'height=255,width=250,toolbar=no,directories=no,' style+= 'status=no,menubar=no,scrollbars=no,resizable=no, modal=yes'; window.open(site, 'test',style ); } /* 모달팝업*/ function modalPopup(){ var objectName = new Object(); // object 선언 modal의 이름이 된다. objectName.message = "이건 테..
/* 빈칸추가 */ function jsBlankAdd(){ var bcpHead = document.getElementById("bcpHead"); // 추가될곳 var bcpHeadRows = bcpHead.rows; var bcpHeadRowsLen = bcpHeadRows.length; var bcpHeadRow = bcpHeadRows[bcpHeadRowsLen - 1]; var bcpHeadCell = bcpHeadRow.cells; var bcpHeadCellLen = bcpHeadCell.length; var bcpHeadInsertRow = bcpHead.insertRow(); var regExp = /value=(.*?)/gi; for (var ii = 0; ii < bcpHeadCel..
입력항목을 추가해주세요. 입력폼 추가 |입력폼 삭제