我需要在同一页中选择多个元素。
例如,这:

$("#administratorUsername").mouseenter(function () {
      $("#administratorUsername").focus();
});

$("#administratorPassword").mouseenter(function () {
      $("#administratorPassword").focus();
});

我还需要选择label元素来应用相同的代码。
例如:$("#administratorUsername, label")$("#administratorUsername - label")
我不知道怎么做,这正是我的问题。

最佳答案

$('#administratorUserName, #administratorPassword').mouseenter(function () {
      $(this).focus();
});

这应该管用。注意中间的逗号。还必须切换到使用选定的对象。因此,更改为$(this).focus()而不是再次特别选择。

09-25 21:35