IE에서placeholder 효과를 구현하는 jquery 플러그인

1298 단어
$(document)
		.ready(
				function() {
					var doc = document, inputs = doc
							.getElementsByTagName('input'), supportPlaceholder = 'placeholder' in doc
							.createElement('input'), placeholder = function(
							input) {
						var text = input.getAttribute('placeholder'), defaultValue = input.defaultValue;
						if (defaultValue == '') {
							input.value = text
							input.setAttribute("old_color", input.style.color);
							input.style.color = "#c0c0c0";
						}
						input.onfocus = function() {
							this.style.color = this.getAttribute("old_color");
							if (input.value === text) {
								this.value = ''
							}
						};
						input.onblur = function() {
							if (input.value === '') {
								this.style.color = "#c0c0c0";
								this.value = text
							}
						}
					};
					if (!supportPlaceholder) {
						for ( var i = 0, len = inputs.length; i < len; i++) {
							var input = inputs[i], text = input
									.getAttribute('placeholder');
							if (input.type === 'text' && text) {
								placeholder(input)
							}
						}
					}
				});

코드를 복사해서 js 파일 인용으로 저장하면 됩니다. 더 이상 처리할 필요가 없습니다. 아주 편리합니다.

좋은 웹페이지 즐겨찾기