光标进入控件触发事件

1、光标进入控件触发事件 

----HTML
<input type="text" onfocusin="focusFunction(this)"/>
-------JS
function focusFunction(obj){
    // 清空异常提示
    $(obj).parents('div').siblings('.sTip-false').show().find('span').html('');
}

猜你喜欢

转载自blog.csdn.net/qq_37570710/article/details/112286778