gpt4 book ai didi

Jquery onClick 但在选项卡上

转载 作者:行者123 更新时间:2023-12-01 07:28:20 25 4
gpt4 key购买 nike

当用户单击字段时,此代码可以正常工作。我希望这样当他们按 Tab 键(按 alt 键)或任何键时..无论发生什么,如果此字段处于事件状态,请运行此 jQuery 代码。到目前为止我只知道.click()

jQuery(document).ready(function(){
$("#fullname").click(function(){
$("#note_email").fadeIn();
});
});

<input type="text" name="fullname" id="fullname" value="" /><div style="display:none" id="note_email">Your name is case sensitive</div>

最佳答案

尝试使用jQuery.bind()并绑定(bind)所有应该执行此代码的事件。

$("#fullname").bind('click keypress keyup change focus', function(){
$("#note_email").fadeIn();
});

但在我看来,焦点可以处理你想要的事情

$("#fullname").bind('focus', function(){
$("#note_email").fadeIn();
});

或者

$("#fullname").focus(function(){
$("#note_email").fadeIn();
});

关于Jquery onClick 但在选项卡上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8100424/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com