分组jquery选择器

时间:2011-03-23 14:51:29

标签: jquery css-selectors

有没有办法将jquery选择器组合在一起?

$(':text, #password').keypress(function() {

2 个答案:

答案 0 :(得分:0)

您的答案应该在编写时起作用,下面是一些关于组合jQuery选择器的附加链接:

Multiple Selection - jQuery

StackOverflow - Combining two jQuery Selectors

答案 1 :(得分:0)

如果我做对了,我猜是

$(':text#password').keypress(function() { alert("hello"); });