如何在Jquery中找到html标签id和select(下拉列表)id

时间:2012-10-18 10:01:33

标签: jquery

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

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

1 个答案:

答案 0 :(得分:0)

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

<强> Live Demo

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

用于选择

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