Duplicata possible:
Recherche si l'élément existe dans toute la page html
je voudrais faire quelque chose:
[~ # ~] html [~ # ~] :
<span id="one">one</span>
<span id="two">two</span>
<span id="three">three</span>
JavaScript :
if (isset($("#one"))){
alert('yes');
}
if (isset($("#two"))){
alert('yes');
}
if (isset($("#three"))){
alert('yes');
}
if (!isset($("#four"))){
alert('no');
}
VIVRE:
comment puis-je faire ça?
if (($("#one").length > 0)){
alert('yes');
}
if (($("#two").length > 0)){
alert('yes');
}
if (($("#three").length > 0)){
alert('yes');
}
if (($("#four")).length == 0){
alert('no');
}
C'est ce dont vous avez besoin :)
Vous pouvez utiliser length
:
if($("#one").length) { // 0 == false; >0 == true
alert('yes');
}
function isset(element) {
return element.length > 0;
}
Ou, en tant qu'extension jQuery:
$.fn.exists = function() { return this.length > 0; };
// later ...
if ( $("#id").exists() ) {
// do something
}
php.js ( http://www.phpjs.org/ ) a une fonction isset()
: http://phpjs.org/functions/isset:454