所有
我的for中有一个文本区域字段。如何使用jquery在onclick上清除它的内容
感谢。
答案 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;
}
});