일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- FastAPI
- numpy
- check_password
- for loop
- array
- tkinter Radio 동적버튼
- flask
- Django-allauth
- SQL
- graphene-django
- python
- allauth
- Django
- GraphQL
- Today
- Total
목록[PL]/Java Script (9)
객
function replaceAll(value1, value2, value3) { while(1){ if(value1.indexOf(value2) != -1){ value1 = value1.replace(value2, value3); // //======================================= if (value1.indexOf("V11") >= 0 || value1.indexOf("R11") >= 0) { var tempval = value1.split(";"); for (var i = 0; i < 8; i += 2) { if (tempval[i] == "V11" || tempval[i] == "R11") { var ..
<script type="text/javascript"> //키보드 입력 이벤트에 의해서 함수 호출이 됨. //2011. 12. 20 작성한 소스임. function smsByteChk(content) { var temp_str = content.value; var remain = document.getElementById("smsRemain"); remain.value = 80 - getByte(temp_str); if (remain.value <= 0) { alert(80 + "Bytes를 초과할 수 없습니다."); ..
<script type="text/javascript"> function Test01() { var newDate = new Date(); var shour = newDate.getHours(); var smin = newDate.getMinutes(); var ssec = newDate.getSeconds(); ////////////////////////////////////////////////////////////////// // 함수 정리 //getHours() - Date에서 시에대한 값을 가지고 옴. //getMinutes() -Date에서 분에 대한 값을 가지고 옴 //getSec..
function showDate() { //현재 날자에 대한 정보를 갖는 객체(메소드+속성) 만듬(생성) var todayDate = new Date(); alert("오늘은 : " + todayDate); } function showDate01() { //현재 날자에 대한 정보를 갖는 객체(메소드+속성) 만듬(생성) var todayDate = new Date(); var y = todayDate.getYear(); var m = todayDate.getMonth() + 1; // 0 ~ 11 까지얻어옴. /*..