>웹 프론트엔드 >H5 튜토리얼 >HTML 5 입력 자리 표시자 속성이 ie_html5 튜토리얼 기술로 완벽하게 사용될 수 있는 방법

HTML 5 입력 자리 표시자 속성이 ie_html5 튜토리얼 기술로 완벽하게 사용될 수 있는 방법

WBOY
WBOY원래의
2016-05-16 15:47:481865검색

记得引用jquery 类库

复aze代码
代码如下:

$(문서) .ready(function () {
if ($.browser.msie)
$("input:text,input:password").each(function () {
var $placeholder = $(this ).attr("placeholder");
var $width = $(this).css("width")
var $id = $(this).attr("id"); var $height =parseInt($(this).css("height")) 6 "px";
var $fontSize = $(this).css("font-size")
var $fontWeight = $(this).css("font-weight");
var $lineHeight = $height
if ($(this).css("line-height") != "normal") {
$lineHeight =parseInt($(this).css("line-height")) 6 "px"
}
if ($placeholder != undefine) {
$(this) .after("" $placeholder "");
}
$(this).bind(" keyup", function () {
if ($(this).val() == "") {
$(this).parent().find(".ph_" $id).css( "디스플레이", "인라인 블록");
}
else {
$(this).parent().find(".ph_" $id).css("display", "none");
}
});
});
$(".placeholder").live("click", function () {
$(this).prev().focus();
});
});

页face调用


复代码码代码如下:









样式


复代码码代码如下:


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.