IE 10 다음 버전 placeholder에 대한 호환성 솔루션
3708 단어 placeholderi 브라우저
<!-- IE 10 placeholder -->
<!--[if lt IE 10]>
<script>
$(function(){
$("input[type!='password'],textarea").bind({
"focus":function(){
var placeholderVal = $(this).attr("placeholder");
var realVal = $(this).val();
if($.trim(realVal)==placeholderVal){
$(this).val("");
}
},
"blur":function(){
var placeholderVal = $(this).attr("placeholder");
var realVal = $(this).val();
if($.trim(realVal)==""){
$(this).val(placeholderVal);
}
}
});
$("input[type!='password'],textarea").each(function(i,n){
$(this).val($(this).attr("placeholder"));
});
$("input[type='password']").bind({
"focus":function(){
var placeholderVal = $(this).attr("placeholder");
var realVal = $(this).val();
if($.trim(realVal)==placeholderVal){
var copy_this = $(this).clone(true,true);
$(copy_this).attr("type","password");
$(copy_this).insertAfter($(this));
$(this).remove();
$(copy_this).val("");
$(copy_this).focus();
}
},
"blur":function(){
var placeholderVal = $(this).attr("placeholder");
var realVal = $(this).val();
if($.trim(realVal)==""){
var copy_this = $(this).clone(true,true);
$(copy_this).attr("type","text");
$(copy_this).insertAfter($(this));
$(this).remove();
$(copy_this).val(placeholderVal);
}
}
});
$("input[type='password']").each(function(i,n){
var placeHolderVal = $(this).attr("placeholder");
var copy_this = $(this).clone(true,true);
$(copy_this).attr("type","text");
$(copy_this).insertAfter($(this));
$(this).remove();
$(copy_this).val(placeHolderVal);
});
});
</script>
<![endif]-->
계속 업데이트,
<input type="password" id="loginPassword" placeholder=" (6-16 )" class="width270">
<input type="text" passwordMask="true" placeholder=" (6-16 )" style="display:none;" class="width270">
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
UiPath Task Capture 템플릿에서 사용하는 각 자리 표시자에 대한 설명을 설명하고 보았습니다!UiPath Task Capture는 자동화 후보에 대한 자세한 정보를 비즈니스 사용자로부터 직접 얻을 수 있도록 도와주는 프로세스 정의 문서 생성 도구입니다. 물론 비즈니스 사용자에 한하지 않고 활용할 수 있는 도...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.