最佳答案
如果文本区域已经被聚焦,我如何检测 .click
事件触发器?
我有这个 jquery:
$(".status").on("click","textarea",function(){
if ($(this) == "focused") {
// fire this step
}else{
$(this).focus();
// fire this step
}