A T.J Crowder , . , jsTree, , .
node, , id var nodeId . var nodeId. , , node, , . , i .
, . (HTML Javascript), .
var nodeId = 'the-node-id';
$('#' + nodeId).each(function() {
var matchingIds = $('[id='+this.id+']');
if (matchingIds.length > 1 && matchingIds[0] == this) {
for (i = 0; i < matchingIds.length; i++) {
}
}
});
: , , T.J Crowder.
$('[id]').each(function() {
var matchingIds = $('[id='+this.id+']');
if (matchingIds.length > 1 && matchingIds[0] == this) {
for (i = 0; i < matchingIds.length; i++) {
}
}
});