일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jsp
- SpringSource Tool Suite
- 컬럼명
- C#
- Apache Lucene
- Redirect
- TextBox
- Bootstrap
- 자바스크립트
- 안드로이드
- MSsql
- WebView
- html
- asp.net
- MANTIS
- varags
- Android
- Java
- 이클립스
- 자바
- decompiler
- Eclipse
- Maven
- 웹 서비스
- STS
- Web Service
- javascript
- scrollView
- 웹뷰
- MS-SQL
- Today
- Total
목록Web (40)
bboks.net™
This will replace line breaks to HTML break tags. The different combinations are to cover the different browsers/systems and how line breaks are interpreted. $(this).val().replace(/\r\n|\r|\n/g," ")This will bring it back to new lines - also covering how different browsers interpret innerHTML. boxText.replace(/ /g,"\n"); [출처] New Line in Textarea to be converted to
Colored By Color Scripter™1234567pre { white-space: pre-wrap; /* css-3 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ word-wrap: break-word; /* Internet Explorer 5.5+ */}
Colored By Color Scripter™1$("selector").data('typeahead').source = list2; [출처] bootstrap typeahead - changing source
자바스크립트에서 replaceAll 은 없다. 정규식을 이용하여 대상 스트링에서 모든 부분을 수정해줄 수 있다. ex) str.replace("#",""); -> #를 공백으로 변경한다. 하지만 첫번째 # 만 공백으로 변경하고 나머지는 변경이 되지 않는다. str.replace(/#/gi, ""); -> #를 감싼 따옴표를 슬래시로 대체하고 뒤에 gi 를 붙이면 replaceAll 과 같은 결과를 볼 수 있다. [출처] 자바스크립트에서 replace를 replaceAll 처럼 사용하기