我對兼容ie早期版本placehoder屬性的處理。

$(':text').each(function() {
  var _this = $(this);
   if ($.browser.msie && ($.browser.version == '6.0' ||    $.browser.version == '7.0' || $.brows    er.version == '8.0')) {
	if (_this.data('wrapped') == true) {
		return;
	}
	var placeholder = _this.attr('placeholder');
	if (placeholder) {
		_this.attr('value', placeholder);
		_this.blur(function() {
			if (!_this.attr('value')) {
				_this.attr('value', placeholder);
			}
		});
		_this.focus(function() {
			if (_this.attr('value') == placeholder) {
				_this.attr('value', '');
			}
		});
	}
	_this.data('wrapped', true);		
   }});
相關文章
相關標籤/搜索