자바스크립트(JavaScript) javascript, setAttribute IE7, IE8~ 구분 적용
javascript, setAttribute IE7, IE8~ 구분 적용 Example #1 소개용 예제 var onclick = button_element.getAttribute("onclick"); // if onclick is not a function, it's not IE7, so use setAttributeif(typeof(onclick) != "function") { button_element.setAttribute('onclick','doSomething();' + onclick); // for FF,IE8 ~ ,Chrome // if onclick is a function, use the IE7 method and call onclick() in the anonymous function..
2013. 12. 10.
ASP 형변환(Cint, Clng, Cdbl, Cstr, Csng, Cdate, Round, Fix)
ASP 형변환(Cint, Clng, Cdbl, Cstr, Csng, Cdate, Round, Fix) Cint 함수 : integer형으로 변환사용법 : Cint(변수) Clng 함수 : long형으로 변환사용법 : Clng(변수) Cstr 함수 : string형으로 변환사용법 : Cstr(변수) Cdbl 함수 : double형으로 변환사용법 : Cdbl(변수) Csng 함수 : single형으로 변환사용법 : Csng(변수) Cdate 함수 : date(날짜)형으로 변환사용법 : Cdate(변수) Round() 함수 : 반올림 함수 사용법 : Round(변수) Fix() 함수 : 버림 함수 사용법 : Fix(변수)
2013. 12. 6.