Jquery字段清晰

时间:2009-12-28 07:47:39

标签: jquery html

所有

我的for中有一个文本区域字段。如何使用jquery在onclick上清除它的内容

感谢。

3 个答案:

答案 0 :(得分:3)

$("#textArea").click(function(){ $(this).attr({ value: '' }); });

有几点需要注意:

  • 只要有人点击它就会清除,即使他们已经输入了数据
  • 只有在有人点击字段时才会有效

答案 1 :(得分:3)

$('textarea').focus(function() {
  $(this).val('');
});

这将清除焦点上的textarea(使用鼠标点击或键盘)。

答案 2 :(得分:2)

这将清除默认值onclick并恢复onblur。

$('textarea').click(function () {
    if (this.value == this.defaultValue) {
        this.value = '';
    }
});
$('textarea').blur(function () {
    if (this.value === '') {
        this.value = this.defaultValue;
    }
});