模仿“占位符”具有“值”的 attr

发布于 2024-12-05 15:29:22 字数 1658 浏览 2 评论 0原文

我在网上找到了这个:

var x = 0; // count for array length

$("input.placeholder").each(function(){
    x++; //incrementing array length
});

var _values = new Array(x); //create array to hold default values

x = 0; // reset counter to loop through array

$("input.placeholder").each(function(){ // for each input element
    x++;
    var the_default = $(this).val();
    var default_value = $(this).val(); // get default value.
    _values[x] = default_value; // create new array item with default value
});

var current_value; // create global current_value variable

$('input.placeholder').focus(function(){
    current_value = $(this).val(); // set current value
    var is_default = _values.indexOf(current_value); // is current value is also default value

    if(is_default > -1){ //i.e false
        $(this).val(''); // clear value
    }
});

$('input.placeholder').focusout(function(){
    if( $(this).val() == ''){ //if it is empty...
        $(this).val(current_value); //re populate with global current value
    }
});

如您所见,它获取 value 属性中的文本并将其设置为 default_value。然后它会根据默认值检查current_value

我遇到了问题。

在此示例中,我们有一个如下元素:

如果用户聚焦和取消聚焦输入,效果很好 - 删除并用“potato”重新填充。

但是,假设用户输入“ioqiweoiqwe”,然后取消输入焦点(填写表单的其余部分“)。然后他们返回到我们的输入并删除所有文本,然后单击另一个字段。输入将重新填充“ioqiweoiqwe” - 实际上,我们希望它重新填充default_value

。 一个 jQuery 块。

注意:我在这里设置了一个jsfiddle...在一些评论之后: http://jsfiddle.net/xmhCz/< /a>

I found this online:

var x = 0; // count for array length

$("input.placeholder").each(function(){
    x++; //incrementing array length
});

var _values = new Array(x); //create array to hold default values

x = 0; // reset counter to loop through array

$("input.placeholder").each(function(){ // for each input element
    x++;
    var the_default = $(this).val();
    var default_value = $(this).val(); // get default value.
    _values[x] = default_value; // create new array item with default value
});

var current_value; // create global current_value variable

$('input.placeholder').focus(function(){
    current_value = $(this).val(); // set current value
    var is_default = _values.indexOf(current_value); // is current value is also default value

    if(is_default > -1){ //i.e false
        $(this).val(''); // clear value
    }
});

$('input.placeholder').focusout(function(){
    if( $(this).val() == ''){ //if it is empty...
        $(this).val(current_value); //re populate with global current value
    }
});

As you can see, it grabs the text within a value attribute and sets it as the default_value. It then checks the current_value against the default.

I'm running into a problem.

In this example, we have an element like:

<input type="text" class="placeholder" value="potato">

If the user focuses and unfocuses the input, it works great - removing and repopulating with "potato".

However, let's say a user enters "ioqiweoiqwe", and then unfocuses the input (fills out the rest of the form"). They then go back to our input and delete all of their text, and click on another field. The input would be re-populated with "ioqiweoiqwe" - when really, we want it to be re-populated with the default_value. How do I manage to do this?

Yours sincerely,
a jQuery nub.

Note: I set up a jsfiddle here... a bit after some comments: http://jsfiddle.net/xmhCz/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最美的太阳 2024-12-12 15:29:22

我真的不知道该代码有什么问题,但看起来它是由不太了解 JavaScript 的人编写的。我重写了功能:

$("input.placeholder").each(function() {
    var me=$(this);
    var defaultValue=me.val();
    me.focus(function() {
        if(me.val()===defaultValue) {
            me.val("");
        }
    });
    me.blur(function() {
        if(me.val()==="") {
            me.val(defaultValue);
        }
    });
});

在 JSFiddle 上测试一下

I don't really know what the problem with that code is, but it looks like it was written by someone who didn't know much JavaScript. I rewrote the functionality:

$("input.placeholder").each(function() {
    var me=$(this);
    var defaultValue=me.val();
    me.focus(function() {
        if(me.val()===defaultValue) {
            me.val("");
        }
    });
    me.blur(function() {
        if(me.val()==="") {
            me.val(defaultValue);
        }
    });
});

Test it out on JSFiddle.

奈何桥上唱咆哮 2024-12-12 15:29:22

HTML 输入具有 defaultValue

HTML inputs have defaultValue

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文