在这里我可以找到文本 id,就像我想找到标签 id 并选择 id
$('input[type="text"]').focus(function () {
var id = $(this).attr('id');
$('#' + id).draggable({ cancel: true });
});
在这里我可以找到文本 id,就像我想找到标签 id 并选择 id
$('input[type="text"]').focus(function () {
var id = $(this).attr('id');
$('#' + id).draggable({ cancel: true });
});