【发布时间】:2025-11-27 17:55:02
【问题描述】:
如果 textarea 已经聚焦,我如何检测 .click 事件何时触发?
我有这个 jquery:
$(".status").on("click","textarea",function(){
if ($(this) == "focused") {
// fire this step
}else{
$(this).focus();
// fire this step
}
【问题讨论】:
-
它不是重复的,因为另一个问题专门要求 jquery 解决方案。
-
我同意。我想知道 OP 是否曾经是基于 jQuery 的...
-
@HermannIngjaldsson 隐含地这样做了,因为提供的代码使用了 jQuery(就像最初发布时一样)。因此它是重复的。
标签: javascript jquery