gpt4 book ai didi

javascript - 占位符显示为点状而不是占位符文本(默认文本)

转载 作者:太空宇宙 更新时间:2023-11-03 17:59:35 25 4
gpt4 key购买 nike

Placeholder 在 IE10 以下的浏览器中不工作,同时我写了下面的代码它工作正常。但问题出在密码字段中,它显示的是点而不是占位符文本。请找到随附的屏幕截图。这是我的代码,请问有没有修复密码字段占位符可见的解决方案。

//Default text in login page.
(function ($) {
$.support.placeholder = ('placeholder' in document.createElement('input'));
})(jQuery);


//fix for IE7 and IE8
$(function () {
if (!$.support.placeholder) {
$("[placeholder]").focus(function () {
if ($(this).val() == $(this).attr("placeholder")) $(this).val("");
}).blur(function () {
if ($(this).val() == "") $(this).val($(this).attr("placeholder"));
}).blur();

$("[placeholder]").parents("login").submit(function () {
$(this).find('[placeholder]').each(function() {
if ($(this).val() == $(this).attr("placeholder")) {
$(this).val("");
}
});
});
}
});![enter image description here][1]

最佳答案

使用下面这个,它会对你有帮助

$(function () {
var input = document.createElement("input");
if (('placeholder' in input) == false) {
$('[placeholder]').focus(function () {
var i = $(this);
if (i.val() == i.attr('placeholder')) {
i.val('').removeClass('placeholder');
if (i.hasClass('password')) {
i.removeClass('password');
this.type = 'password';
}
}
}).blur(function () {
var i = $(this);
if (i.val() == '' || i.val() == i.attr('placeholder')) {
if (this.type == 'password') {
i.addClass('password');
this.type = 'text';
}
i.addClass('placeholder').val(i.attr('placeholder'));
}
}).blur().parents('form').submit(function () {
$(this).find('[placeholder]').each(function () {
var i = $(this);
if (i.val() == i.attr('placeholder'))
i.val('');
})
});
}
});

关于javascript - 占位符显示为点状而不是占位符文本(默认文本),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25680078/

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