onblur事件
textArea.onblur = function () {
var me = this;
if (me.value == "") {
timer = setTimeout(function () {
me.parentNode.className = 'text-box';
me.value = '评论…';
}, 400)
}
}
与textarea.onblur();
中的onblur是否是调用的一个函数
请问原理是什么?