Home  >  Article  >  Web Front-end  >  Use js to determine whether a control has focus_javascript skills

Use js to determine whether a control has focus_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:05:351004browse

Use JS to get the ID of the control with focus:

Copy the code The code is as follows:

$("#textID").click(function(){
var act = document.activeElement.id;
if(act == "textID" ){
alert( "true");
}else{
alert("false");
}
} );

Use jquery to get the ID of the control with focus: var act = $(document.activeElement).attr("id");
-----------------------
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn