본문 바로가기

JavaScript46

javascript 날짜 between 유사기능 (날짜와 날짜 사이) start_expirationDate 와 end_expirationDate 사이에 기준 날짜가 끼어 있으면 OOO기능을 수행한다. function dateCheck(start_expirationDate, end_expirationDate ){ var today = new Date(); var criterionDate = new Array(); var resultCalObj = calenderTemplate(today); criterionDate.push(today.getFullYear()); criterionDate.push(resultCalObj.temp_geyMonth); criterionDate.push(resultCalObj.temp_getDate); criterionDate = criterion.. 2010. 9. 24.
Scriptaculous Sortable.create SPAN [SPANTAG] works[LI TAG] this [LI TAG] Yay [LI TAG] now[LI TAG] * Sample SASPAN [SPANTAG] works[LI TAG] this [LI TAG] Yay [LI TAG] now[LI TAG] * 마우스를 화면에 두고 꾹눌러서 이동해보삼 SPAN 테그는 왜 안먹히는거지? DIV 말고 UL 에 id 값 먹여서 해도 되더이다. 2010. 8. 25.
Drag & Drop (드레그 앤 드롭) Content 1 첫번째 박스 이동합니다. Content 2 두번째 박스 이동합니다. Content 3 세번째 박스 이동합니다. Content 4 네번째 박스 이동합니다. Content 5 다섯번째 박스 이동합니다. Content 6 6번째 박스 이동합니다. Content 1 첫번째 박스 이동합니다. Content 2 두번째 박스 이동합니다. Content 3 세번째 박스 이동합니다. Content 4 네번째 박스 이동합니다. Content 5 다섯번째 박스 이동합니다. Content 6 6번째 박스 이동합니다. li테그로 만들었더니 점이 찍히네, 그냥 DIV로 할껄 그랬나보다, 2010. 8. 25.
Ajax - Ajax.Request new Ajax.Request(actionURL,{ method: 'post', parameters : {companyName : $F('coporatedCompany')}, onLoading : function(){}, onSuccess : function(response){ var resultObj = eval('(' + response.responseText + ')'); var resultValue = resultObj.result; if ( resultValue == "SUCCESS" ) { var tbody = $('tb1').select('tbody')[0]; while(tbody.hasChildNodes()){ tbody.removeChild(tbody.lastChild); } var co.. 2010. 8. 17.