Posted in Javascript onJanuary 03, 2014
使用JS获取具有焦点控件的ID:
$("#textID").click(function(){ var act = document.activeElement.id; if(act == "textID" ){ alert("true"); }else{ alert("false"); } } );
使用jquery获取具有焦点控件的ID:var act = $(document.activeElement).attr("id");
----------------------<input type="text" id="textID">
使用js判断控件是否获得焦点
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@