0

在这里我可以找到文本 id,就像我想找到标签 id 并选择 id

$('input[type="text"]').focus(function () {
   var id = $(this).attr('id');
   $('#' + id).draggable({ cancel: true });
});
4

1 回答 1

0

您可以将鼠标输入用于标签焦点事件,因为焦点事件不适用于标签。

现场演示

$('label').mouseenter(function () {
      var id = $(this).attr('id');
      $('#' + id).draggable({ cancel: true });
});

供选择

$('select').focus(function () {
      var id = $(this).attr('id');
      $('#' + id).draggable({ cancel: true });
});
于 2012-10-18T10:03:01.037 回答