일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DataGrid
- 리포팅서비스
- windows
- 단축키
- 마이크로소프트
- oracle
- 윈폼
- CONVERT()
- MSSQL
- 이클립스
- 자바스크립트
- IIS
- aspnet
- jQuery
- SSRS
- 윈도우
- javascript
- Excel
- 엑셀
- c#
- Winform
- 프로시저
- 태그를 입력해 주세요.
- MS
- ASP
- 비주얼스튜디오
- attr()
- 오라클
- microsoft
- replace()
- Today
- Total
목록indexOf() (2)
DJ메탈짱™의 Free Style
// 내 용 : 검색조건 입력후 엔터키 선택시 검색이 되도록함. // 대상컨트롤 : input type = text, ID = "txt" 포함. (radio, checkboc, hidden, password 컨트롤 제외) // 그 이외의 컨트롤을 제어해주지 않으면 postback이 일어나는 문제가 있어 엔터키가 적용되지 않도록 함. // 작성자 : 최보현(bhchoi@00db.co.kr) // 작성일 : 2010/12/22 $('input').not(':password,:checkbox,:radio','hidden').each(function(){ if($(this).attr("id").indexOf("_0230") != -1) { $(this).keypress(function() { if (event...
ASP의 Request와 같은 함수를 자바스크립트로... // 내 용 : javascript로 구현한 Request // Sample : // ==> var str = Request("ValueName"); function Request(valuename) { var rtnval; var nowAddress = unescape(location.href); var parameters = new Array(); parameters = (nowAddress.slice(nowAddress.indexOf("?")+1,nowAddress.length)).split("&"); for(var i = 0 ; i < parameters.length ; i++){ if(parameters[i].indexOf(valuenam..