这里我可以找到文本ID,就像我想找到标签ID并选择id
一样$('input[type="text"]').focus(function () {
var id = $(this).attr('id');
$('#' + id).draggable({ cancel: true });
});
答案 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 });
});