gpt4 book ai didi

javascript - 使用 jQuery 获取输入的默认值

转载 作者:技术小花猫 更新时间:2023-10-29 12:08:55 26 4
gpt4 key购买 nike

$(".box_yazi2").each(function () {
var default_value = this.value;
$(this).css('color', '#555'); // this could be in the style sheet instead
$(this).focus(function () {
if (this.value == default_value) {
this.value = '';
$(this).css('color', '#000');
}
});
$(this).blur(function () {
if (this.value == '') {
$(this).css('color', '#555');
this.value = default_value;
}
});
});

这个输入默认值的功能在FF下是不行的,在IE下是完美的当然,输入本身看起来像这样:

<input type="text" class="box_yazi2" id="konu" name="konu" value="Boş" />

最佳答案

只需使用 defaultValue属性:

var default_value = $(this).prop("defaultValue");

或者:

var default_value = this.defaultValue;

关于javascript - 使用 jQuery 获取输入的默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4591889/

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