javascript之使用 jQuery 获取输入的默认值
kevingrace
阅读:624
2023-11-05 18:46:41
评论:0
$(".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;
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。