回答:
if ($('#element').is(':empty')){
//do something
}
詳細については、http://api.jquery.com/is/およびhttp://api.jquery.com/empty-selector/を参照してください
編集:
一部の人が指摘したように、空の要素のブラウザの解釈は異なる場合があります。スペースや改行などの非表示の要素を無視し、実装の一貫性を高めたい場合は、関数を作成できます(またはその内部のコードを使用できます)。
function isEmpty( el ){
return !$.trim(el.html())
}
if (isEmpty($('#element'))) {
// do something
}
jQueryプラグインにすることもできますが、そのアイデアは思い付きます。
これが唯一の信頼できる方法であることがわかりました(ChromeとFFは空白と改行を要素と見なしているため):
if($.trim($("selector").html())=='')
if(!$.trim($("selector").html())
if($("selector").children().length === 0)
またはを行うこともできますif($("selector > *").length === 0)
。
:emptyセレクターを使用する場合の主な問題は、空白と改行です。CSSでは:empty擬似クラスは同じように動作します。私はこの方法が好きです:
if ($someElement.children().length == 0){
someAction();
}
$.children()
このソリューションのみチェックを意味し、テキストやコメントノードを返しませんが、要素はの空である要素。テキストまたはコメントのみを含む要素を必要に応じて空と見なすべきでない場合は、他のソリューションのいずれかを使用する必要があります。
select
要素の@sierrasdetandil は完璧です。状態もすることができますif(! $el.children().length)
。
!elt.hasChildNodes()
はい、わかっています。これはjQueryではないので、これを使用できます。
!$(elt)[0].hasChildNodes()
今幸せです?
filter
必要がない限り関数内でjQueryを使用したくなかったので、jQuery 関数内であなたのアプローチを使用しました。
<div class="results"> </div>
であると考えると、このステートメントはfalseを返します。jsfiddle.net/ytliuSVN/0pdwLt46
jQuery.fn.doSomething = function() {
//return something with 'this'
};
$('selector:empty').doSomething();
this
jQuery要素@ZealMurapa以外には何がありますか?
「空」の場合は、HTMLコンテンツがないことを意味し、
if($('#element').html() == "") {
//call function
}
テキストが含まれていないので空ですか?
if (!$('#element').text().length) {
...
}
再開すると、要素が空かどうかを確認するための多くのオプションがあります。
1-使用html
:
if (!$.trim($('p#element').html())) {
// paragraph with id="element" is empty, your code goes here
}
2-使用text
:
if (!$.trim($('p#element').text())) {
// paragraph with id="element" is empty, your code goes here
}
3-使用is(':empty')
:
if ($('p#element').is(':empty')) {
// paragraph with id="element" is empty, your code goes here
}
4-使用 length
if (!$('p#element').length){
// paragraph with id="element" is empty, your code goes here
}
さらに、入力要素が空かどうかを調べようとしている場合は、次のように使用できますval
。
if (!$.trim($('input#element').val())) {
// input with id="element" is empty, your code goes here
}
あなたが試すことができます:
if($('selector').html().toString().replace(/ /g,'') == "") {
//code here
}
*大文字と小文字を区別して、空白を置き換えます;)
!/[\S]/.test($('Selector').html())
空白が見つかったら、それが空ではないことがわかったら、うまく機能しないでしょう
The production CharacterClassEscape :: S evaluates by returning the set of all characters not included in the set returned by CharacterClassEscape :: s.
同じくecma-international.org/ecma-262/5.1/#sec-15.10.2.12
何方をお探しですか jQuery.isEmptyObject()
ですか?
これはhttps://stackoverflow.com/a/6813294/698289に基づくjQueryフィルターです
$.extend($.expr[':'], {
trimmedEmpty: function(el) {
return !$.trim($(el).html());
}
});
JavaScript
var el= document.querySelector('body');
console.log(el);
console.log('Empty : '+ isEmptyTag(el));
console.log('Having Children : '+ hasChildren(el));
function isEmptyTag(tag) {
return (tag.innerHTML.trim() === '') ? true : false ;
}
function hasChildren(tag) {
//return (tag.childElementCount !== 0) ? true : false ; // Not For IE
//return (tag.childNodes.length !== 0) ? true : false ; // Including Comments
return (tag.children.length !== 0) ? true : false ; // Only Elements
}
これを使ってみてください!
document.getElementsByTagName('div')[0];
document.getElementsByClassName('topbar')[0];
document.querySelectorAll('div')[0];
document.querySelector('div'); // gets the first element.
改行は、FFの要素のコンテンツと見なされます。
<div>
</div>
<div></div>
例:
$("div:empty").text("Empty").css('background', '#ff0000');
IEでは両方のdivは空と見なされ、FFではChromeの最後の1つだけが空です。
@qwertymkが提供するソリューションを使用できます
if(!/[\S]/.test($('#element').html())) { // for one element
alert('empty');
}
または
$('.elements').each(function(){ // for many elements
if(!/[\S]/.test($(this).html())) {
// is empty
}
})
$('#elem').text().match(/\S/) || alert('empty');