Jquery - 如何从 e.target 中获取嵌套 DIV 的 ID?
Jquery - how do I get the ID of a nested DIV from an e.target?
此代码:
$('.grid-stack').on('resizestop', function(e) {
var element = e.target;
console.log(element);
});
输出:
<div class="grid-stack-item ui-draggable ui-resizable ui-resizable-autohide" data-gs-x="0" data-gs-y="2" data-gs-width="7" data-gs-height="2">
<div class="grid-stack-item-content ui-draggable-handle">
<div class="box-prop top-widget" data-sortable-id="cars-sold-minute" id="cars-sold-minute-block">
<i class="fa fa-times close-x" aria-hidden="true" style="display: none;"></i>
<div class="single-pie">
到console.log。我正在尝试使用 jquery 获取 cars-sold-minute-block 的 id 但没有成功。使用事件目标时如何获取id?
编辑:我不想命名 id,因为这将用于许多不同的元素。
可以通过元素获取class
$('.grid-stack').on('resizestop', function(e) {
var element = e.target;
var id = $(element).find('.box-prop.top-widget').attr('id');
console.log(element);
});
为了提高性能,请使用带有两个参数的 $
,其中第二个参数是 CTX(父级):
$('.grid-stack').on('resizestop', (e)=> {
let element = e.target;
var id = $('.box-prop.top-widget',element).attr('id');
console.log(id);
});
此代码:
$('.grid-stack').on('resizestop', function(e) {
var element = e.target;
console.log(element);
});
输出:
<div class="grid-stack-item ui-draggable ui-resizable ui-resizable-autohide" data-gs-x="0" data-gs-y="2" data-gs-width="7" data-gs-height="2">
<div class="grid-stack-item-content ui-draggable-handle">
<div class="box-prop top-widget" data-sortable-id="cars-sold-minute" id="cars-sold-minute-block">
<i class="fa fa-times close-x" aria-hidden="true" style="display: none;"></i>
<div class="single-pie">
到console.log。我正在尝试使用 jquery 获取 cars-sold-minute-block 的 id 但没有成功。使用事件目标时如何获取id?
编辑:我不想命名 id,因为这将用于许多不同的元素。
可以通过元素获取class
$('.grid-stack').on('resizestop', function(e) {
var element = e.target;
var id = $(element).find('.box-prop.top-widget').attr('id');
console.log(element);
});
为了提高性能,请使用带有两个参数的 $
,其中第二个参数是 CTX(父级):
$('.grid-stack').on('resizestop', (e)=> {
let element = e.target;
var id = $('.box-prop.top-widget',element).attr('id');
console.log(id);
});