기본 input attribute placeholder는......... ie9이하 안되더라..
그래서 span으로 꼼수를 부리고는 했었는데, 플러그인이 있어 간편하게 사용가능하다.
무려 하위브라우저 지원 가능.! (ie 애뮬레이터를 통해 ie5까지 되는 것 확인했다.(windows8.1 기준))
HTML
<input type="text" placeholder="이름을 입력해주세요.">
JS
<script type="text/javascript" src="/public/javascripts/jquery.min.js"></script>
<script type="text/javascript" src="/public/javascripts/lib/jquery.placeholder.min.js"></script>
<script>
(function ($) {
// 이런식으로 쓰면 된다.
$('input, textarea').placeholder();
})(jQuery);
</script>
자세한 것은! ↓↓↓↓↓
https://github.com/mathiasbynens/jquery-placeholder
'Javascript' 카테고리의 다른 글
마우스 휠로 input 숫자 값 변경하기 (0) | 2018.10.16 |
---|---|
이메일 프론트단 보안하기(*, 별표, asterisk처리) (0) | 2018.10.10 |
최소사이즈 체크하기 (0) | 2018.10.02 |
.serialize(); 시에 checkbox 값 ajax 전송되지 않는 이슈 (0) | 2018.10.02 |
fingerPrint2.js 라이브러리 사용(브라우저 지문) (4) | 2018.10.01 |
일본어 전각, 반각 이슈(Windows10, 8 일본어 언어 추가 방법) (0) | 2018.09.28 |
Fingerprint.js란?__브라우저 지문 라이브러리__보안 (0) | 2018.09.11 |
form validation (0) | 2018.09.05 |