gpt4 book ai didi

jQuery 默认/占位符输入文本和保存信息的问题

转载 作者:行者123 更新时间:2023-11-28 11:50:55 30 4
gpt4 key购买 nike

我是 jQuery 的新手,遇到了一个烦人的问题。我有一些登录字段,当该字段为空时会填充默认文本,然后在单击时删除。

我的问题是,当用户保存了他们的用户名/密码(使用浏览器)时,如果他们返回页面,登录字段将填充用户保存的输入以及默认输入。

$('#login input.text').each(function(i, field) {            field = $(field);            if (field.val().length > 0) {                field.prev().css('display', 'none');            }            field.focus(function() {                field.prev().css('display', 'none');            }).blur(function() {                if (field.val() == '') field.prev().css('display', 'block');            });        })

最佳答案

我建议使用 html5 占位符属性。

<input type="text" placeholder="username" name="username">

Mike Taylor 编写了一个很棒的 jQuery 插件来支持尚不支持此属性的浏览器。 http://github.com/miketaylr/jQuery-html5-placeholder

关于jQuery 默认/占位符输入文本和保存信息的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2649919/

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