gpt4 book ai didi

javascript - IE 中未显示密码字段的占位符

转载 作者:行者123 更新时间:2023-11-29 18:17:10 27 4
gpt4 key购买 nike

我已经实现了以下脚本来在 IE 中为输入框显示占位符,但它不适用于密码字段,请指教我..

<script>
jQuery(function() {
jQuery.support.placeholder = false;
test = document.createElement('input');
if('placeholder' in test) jQuery.support.placeholder = true;
});

// Placeholder for IE
$(function () {
if(!$.support.placeholder) {

var active = document.activeElement;
$(':text, textarea').focus(function () {
if ($(this).attr('placeholder') != '' && $(this).val() == $(this).attr('placeholder')) {
$(this).val('').removeClass('hasPlaceholder');
}
}).blur(function () {
if ($(this).attr('placeholder') != '' && ($(this).val() == '' || $(this).val() == $(this).attr('placeholder'))) {
$(this).val($(this).attr('placeholder')).addClass('hasPlaceholder');
}
});
$(':text, textarea').blur();
$(active).focus();
$('form').submit(function () {
$(this).find('.hasPlaceholder').each(function() { $(this).val(''); });
});
}

});
</script>

最佳答案

尝试添加input[type="password"]到你的选择器,所以改变:

$(':text, textarea')

到:

$(':text, textarea, input[type="password"]')

自<强>:text selector 只选择<input type="text">元素

关于javascript - IE 中未显示密码字段的占位符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22140888/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com