Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户在下面的文本字段内单击时,我将如何触发事件。我遇到的问题是我可以添加 id/class 的唯一标签是
它位于实际表单域之外。
<p class="trigger"> <input type="text" name="test"> </p>
我不想在输入标签上使用通用触发器,这不合适
$(input).focus(function() { alert('triggered'); });
它确实需要与 p 类“触发器”相关联,任何帮助都会很棒
你有没有尝试过
$('.trigger input').focus(function() { alert('triggered'); });
现场演示