gpt4 book ai didi

jquery - $ ('*' ).not ('input' ) 不适用于 chrome 中的密码字段?

转载 作者:可可西里 更新时间:2023-11-01 13:40:05 26 4
gpt4 key购买 nike

我正在选择所有不是输入标签的标签来绑定(bind)热键。

$('*').not('input').bindHotKey(blah);

但是,这似乎并不排除chrome中的密码字段。即:<input type="password"/>

最佳答案

尝试只选择 body 元素的后代:

$('body *').not('input').bindHotKey(blah);

DEMO

更新:但它甚至似乎可以与 $('*') 一起使用。看看this fiddle .如果没有 not,页面中有 11 个元素,如果有 not,则有 10 个。

关于jquery - $ ('*' ).not ('input' ) 不适用于 chrome 中的密码字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5308688/

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