$("*").click(function(){
$(this); // how can I get selector from $(this) ?
});
Existe uma maneira fácil de obter o seletor$(this)
? Existe uma maneira de selecionar um elemento por seu seletor, mas que tal pegar o seletor do elemento ?
$("*").click(function(){
$(this); // how can I get selector from $(this) ?
});
Existe uma maneira fácil de obter o seletor$(this)
? Existe uma maneira de selecionar um elemento por seu seletor, mas que tal pegar o seletor do elemento ?
Respostas:
Ok, então, em um comentário acima do autor da pergunta Fidilip
disse que o que ele realmente quer é obter o caminho para o elemento atual.
Aqui está um script que "escalará" a árvore ancestral do DOM e, em seguida, construirá um seletor bastante específico, incluindo qualquer atributo id
ou class
no item clicado.
Veja-o funcionando no jsFiddle: http://jsfiddle.net/Jkj2n/209/
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function() {
$("*").on("click", function(e) {
e.preventDefault();
var selector = $(this)
.parents()
.map(function() { return this.tagName; })
.get()
.reverse()
.concat([this.nodeName])
.join(">");
var id = $(this).attr("id");
if (id) {
selector += "#"+ id;
}
var classNames = $(this).attr("class");
if (classNames) {
selector += "." + $.trim(classNames).replace(/\s/gi, ".");
}
alert(selector);
});
});
</script>
</head>
<body>
<h1><span>I love</span> jQuery</h1>
<div>
<p>It's the <strong>BEST THING</strong> ever</p>
<button id="myButton">Button test</button>
</div>
<ul>
<li>Item one
<ul>
<li id="sub2" >Sub one</li>
<li id="sub2" class="subitem otherclass">Sub two</li>
</ul>
</li>
</ul>
</body>
</html>
Por exemplo, se você clicar no segundo item da lista aninhada no HTML abaixo, obterá o seguinte resultado:
HTML>BODY>UL>LI>UL>LI#sub2.subitem.otherclass
join(" > ");
, obterá os filhos imediatos e, portanto, um caminho mais rígido .
O objeto jQuery tem uma propriedade selector que vi ao pesquisar em seu código ontem. Não sei se está definido na documentação é o quão confiável é (para prova futura). Mas funciona!
$('*').selector // returns *
Editar : se você encontrar o seletor dentro do evento, o ideal é que essa informação faça parte do próprio evento e não do elemento, porque um elemento pode ter vários eventos de clique atribuídos por meio de vários seletores. Uma solução seria usar um wrapper para adicionar eventos bind()
, click()
etc. , em vez de adicioná-los diretamente.
jQuery.fn.addEvent = function(type, handler) {
this.bind(type, {'selector': this.selector}, handler);
};
O seletor está sendo passado como uma propriedade de objeto chamada selector
. Acesse comoevent.data.selector
.
Vamos tentar em alguma marcação ( http://jsfiddle.net/DFh7z/ ):
<p class='info'>some text and <a>a link</a></p>
$('p a').addEvent('click', function(event) {
alert(event.data.selector); // p a
});
Isenção de responsabilidade : lembre-se de que, assim como live()
acontece com os eventos, a propriedade do seletor pode ser inválida se métodos de travessia do DOM forem usados.
<div><a>a link</a></div>
O código a seguir NÃO funcionará, pois live
depende da propriedade selector que, neste caso, é a.parent()
- um seletor inválido.
$('a').parent().live(function() { alert('something'); });
Nosso addEvent
método irá disparar, mas você também verá o seletor errado - a.parent()
.
No Such jQuery Method Exists
Em colaboração com @drzaus, criamos o seguinte plugin jQuery.
!(function ($, undefined) {
/// adapted http://jsfiddle.net/drzaus/Hgjfh/5/
var get_selector = function (element) {
var pieces = [];
for (; element && element.tagName !== undefined; element = element.parentNode) {
if (element.className) {
var classes = element.className.split(' ');
for (var i in classes) {
if (classes.hasOwnProperty(i) && classes[i]) {
pieces.unshift(classes[i]);
pieces.unshift('.');
}
}
}
if (element.id && !/\s/.test(element.id)) {
pieces.unshift(element.id);
pieces.unshift('#');
}
pieces.unshift(element.tagName);
pieces.unshift(' > ');
}
return pieces.slice(1).join('');
};
$.fn.getSelector = function (only_one) {
if (true === only_one) {
return get_selector(this[0]);
} else {
return $.map(this, function (el) {
return get_selector(el);
});
}
};
})(window.jQuery);
// http://stackoverflow.com/questions/2420970/how-can-i-get-selector-from-jquery-object/15623322#15623322
!function(e,t){var n=function(e){var n=[];for(;e&&e.tagName!==t;e=e.parentNode){if(e.className){var r=e.className.split(" ");for(var i in r){if(r.hasOwnProperty(i)&&r[i]){n.unshift(r[i]);n.unshift(".")}}}if(e.id&&!/\s/.test(e.id)){n.unshift(e.id);n.unshift("#")}n.unshift(e.tagName);n.unshift(" > ")}return n.slice(1).join("")};e.fn.getSelector=function(t){if(true===t){return n(this[0])}else{return e.map(this,function(e){return n(e)})}}}(window.jQuery)
<html>
<head>...</head>
<body>
<div id="sidebar">
<ul>
<li>
<a href="/" id="home">Home</a>
</li>
</ul>
</div>
<div id="main">
<h1 id="title">Welcome</h1>
</div>
<script type="text/javascript">
// Simple use case
$('#main').getSelector(); // => 'HTML > BODY > DIV#main'
// If there are multiple matches then an array will be returned
$('body > div').getSelector(); // => ['HTML > BODY > DIV#main', 'HTML > BODY > DIV#sidebar']
// Passing true to the method will cause it to return the selector for the first match
$('body > div').getSelector(true); // => 'HTML > BODY > DIV#main'
</script>
</body>
</html>
$.map
* Delimitador opcional (precisa remover estranhos tagNames vazios) * você não precisa verificar hasOwnProperty
em um foreach
loop para ser seguro?
' > '
faria com que ele não retornasse o seletor do elemento.
Eu lancei um plugin jQuery: jQuery Selectorator , você pode obter um seletor como este.
$("*").on("click", function(){
alert($(this).getSelector().join("\n"));
return false;
});
Experimente isto:
$("*").click(function(event){
console.log($(event.handleObj.selector));
});
Basta adicionar uma camada sobre a função $ desta forma:
$ = (function(jQ) {
return (function() {
var fnc = jQ.apply(this,arguments);
fnc.selector = (arguments.length>0)?arguments[0]:null;
return fnc;
});
})($);
Agora você pode fazer coisas como
$ ("a"). seletore retornará "a" mesmo nas versões mais recentes do jQuery.
http://www.selectorgadget.com/ é um bookmarklet projetado explicitamente para este caso de uso.
Dito isso, concordo com a maioria das outras pessoas em que você deve apenas aprender os seletores de CSS sozinho, tentar gerá-los com código não é sustentável. :)
Eu adicionei algumas correções à correção de @jessegavin.
Isso retornará imediatamente se houver um ID no elemento. Também adicionei uma verificação de atributo de nome e um seletor enésimo filho, caso um elemento não tenha id, classe ou nome.
O nome pode precisar de escopo caso haja vários formulários na página e tenham entradas semelhantes, mas eu não tratei disso ainda.
function getSelector(el){
var $el = $(el);
var id = $el.attr("id");
if (id) { //"should" only be one of these if theres an ID
return "#"+ id;
}
var selector = $el.parents()
.map(function() { return this.tagName; })
.get().reverse().join(" ");
if (selector) {
selector += " "+ $el[0].nodeName;
}
var classNames = $el.attr("class");
if (classNames) {
selector += "." + $.trim(classNames).replace(/\s/gi, ".");
}
var name = $el.attr('name');
if (name) {
selector += "[name='" + name + "']";
}
if (!name){
var index = $el.index();
if (index) {
index = index + 1;
selector += ":nth-child(" + index + ")";
}
}
return selector;
}
Eu estava recebendo vários elementos mesmo após as soluções acima, então estendi o trabalho do dds1024, para um elemento dom ainda mais preciso.
ex: DIV: enésima criança (1) DIV: enésima criança (3) DIV: enésima criança (1) ARTIGO: enésima criança (1) DIV: enésima criança (1) DIV: enésima criança (8) DIV : enésima criança (2) DIV: enésima criança (1) DIV: enésima criança (2) DIV: enésima criança (1) H4: enésima criança (2)
Código:
function getSelector(el)
{
var $el = jQuery(el);
var selector = $el.parents(":not(html,body)")
.map(function() {
var i = jQuery(this).index();
i_str = '';
if (typeof i != 'undefined')
{
i = i + 1;
i_str += ":nth-child(" + i + ")";
}
return this.tagName + i_str;
})
.get().reverse().join(" ");
if (selector) {
selector += " "+ $el[0].nodeName;
}
var index = $el.index();
if (typeof index != 'undefined') {
index = index + 1;
selector += ":nth-child(" + index + ")";
}
return selector;
}
Isso pode levar você ao caminho do seletor do elemento HTML clicado -
$("*").on("click", function() {
let selectorPath = $(this).parents().map(function () {return this.tagName;}).get().reverse().join("->");
alert(selectorPath);
return false;
});
Bem, eu escrevi este plugin jQuery simples.
Isso verifica o id ou o nome da classe e tenta fornecer o seletor mais exato possível.
jQuery.fn.getSelector = function() {
if ($(this).attr('id')) {
return '#' + $(this).attr('id');
}
if ($(this).prop("tagName").toLowerCase() == 'body') return 'body';
var myOwn = $(this).attr('class');
if (!myOwn) {
myOwn = '>' + $(this).prop("tagName");
} else {
myOwn = '.' + myOwn.split(' ').join('.');
}
return $(this).parent().getSelector() + ' ' + myOwn;
}
Você está tentando obter o nome da tag atual que foi clicada?
Se sim, faça isso ..
$("*").click(function(){
alert($(this)[0].nodeName);
});
Você realmente não pode obter o "seletor", o "seletor" no seu caso é *
.
Código Javascript para o mesmo, caso alguém precise, conforme eu precisei. Esta é apenas a tradução apenas da resposta selecionada acima.
<script type="text/javascript">
function getAllParents(element){
var a = element;
var els = [];
while (a && a.nodeName != "#document") {
els.unshift(a.nodeName);
a = a.parentNode;
}
return els.join(" ");
}
function getJquerySelector(element){
var selector = getAllParents(element);
/* if(selector){
selector += " " + element.nodeName;
} */
var id = element.getAttribute("id");
if(id){
selector += "#" + id;
}
var classNames = element.getAttribute("class");
if(classNames){
selector += "." + classNames.replace(/^\s+|\s+$/g, '').replace(/\s/gi, ".");
}
console.log(selector);
alert(selector);
return selector;
}
</script>
Levando em conta algumas respostas lidas aqui, gostaria de propor o seguinte:
function getSelectorFromElement($el) {
if (!$el || !$el.length) {
return ;
}
function _getChildSelector(index) {
if (typeof index === 'undefined') {
return '';
}
index = index + 1;
return ':nth-child(' + index + ')';
}
function _getIdAndClassNames($el) {
var selector = '';
// attach id if exists
var elId = $el.attr('id');
if(elId){
selector += '#' + elId;
}
// attach class names if exists
var classNames = $el.attr('class');
if(classNames){
selector += '.' + classNames.replace(/^\s+|\s+$/g, '').replace(/\s/gi, '.');
}
return selector;
}
// get all parents siblings index and element's tag name,
// except html and body elements
var selector = $el.parents(':not(html,body)')
.map(function() {
var parentIndex = $(this).index();
return this.tagName + _getChildSelector(parentIndex);
})
.get()
.reverse()
.join(' ');
if (selector) {
// get node name from the element itself
selector += ' ' + $el[0].nodeName +
// get child selector from element ifself
_getChildSelector($el.index());
}
selector += _getIdAndClassNames($el);
return selector;
}
Talvez seja útil para criar um plugin jQuery?
Obrigado p1nox!
Meu problema era colocar o foco novamente em uma chamada ajax que estava modificando parte do formulário.
$.ajax({ url : "ajax_invite_load.php",
async : true,
type : 'POST',
data : ...
dataType : 'html',
success : function(html, statut) {
var focus = $(document.activeElement).getSelector();
$td_left.html(html);
$(focus).focus();
}
});
Eu só precisava encapsular sua função em um plugin jQuery:
!(function ($, undefined) {
$.fn.getSelector = function () {
if (!this || !this.length) {
return ;
}
function _getChildSelector(index) {
if (typeof index === 'undefined') {
return '';
}
index = index + 1;
return ':nth-child(' + index + ')';
}
function _getIdAndClassNames($el) {
var selector = '';
// attach id if exists
var elId = $el.attr('id');
if(elId){
selector += '#' + elId;
}
// attach class names if exists
var classNames = $el.attr('class');
if(classNames){
selector += '.' + classNames.replace(/^\s+|\s+$/g, '').replace(/\s/gi, '.');
}
return selector;
}
// get all parents siblings index and element's tag name,
// except html and body elements
var selector = this.parents(':not(html,body)')
.map(function() {
var parentIndex = $(this).index();
return this.tagName + _getChildSelector(parentIndex);
})
.get()
.reverse()
.join(' ');
if (selector) {
// get node name from the element itself
selector += ' ' + this[0].nodeName +
// get child selector from element ifself
_getChildSelector(this.index());
}
selector += _getIdAndClassNames(this);
return selector;
}
})(window.jQuery);
Isso não mostrará o caminho do DOM, mas produzirá uma representação de string do que você vê, por exemplo, no depurador do cromo, ao visualizar um objeto.
$('.mybtn').click( function(event){
console.log("%s", this); // output: "button.mybtn"
});
https://developer.chrome.com/devtools/docs/console-api#consolelogobject-object
E se:
var selector = "*"
$(selector).click(function() {
alert(selector);
});
Não acredito que o jQuery armazene o texto do seletor que foi usado. Afinal, como isso funcionaria se você fizesse algo assim:
$("div").find("a").click(function() {
// what would expect the 'selector' to be here?
});
$('div').find('a').selector
é div a
. Se os eventos não forem criados por meio das funções jQuery, mas por um wrapper, acredito que o seletor pode ser passado como os argumentos de dados para o manipulador de eventos.