在一个函数中,我需要在尝试删除html并添加新内容之前检查(div,span,p)是否包含任何.html元素。
不知道怎么做......
我试过了,但没有工作:
// HERE below I tried to do a check to see if the div's have HTML, but did not work
if ($('.'+rowName+' div').html) {
$('.'+rowName+' div').html.remove();
$('.'+rowName+' span').html.remove();
$('.'+rowName+' p').html.remove();
}
全功能
// Create the Role / Fan rows
function rowMaker (rowName, roleName) {
//alert(rowName+' '+roleName);
// HERE below I tried to do a check to see if the div's have HTML, but did not work
if ($('.'+rowName+' div').html) {
$('.'+rowName+' div').html.remove();
$('.'+rowName+' span').html.remove();
$('.'+rowName+' p').html.remove();
}
// Blue button
$('.'+rowName+' div').append(roleName);
$('.'+rowName+' div').attr('id', 'blue-fan-'+roleName);
var blueButton = ('blue-fan-'+roleName);
console.log('blueButton = '+blueButton);
// Genres
$('.'+rowName+' span').append(roleType);
// Tags
$.each(role_Actor, function(index, item) {
$('.'+rowName+' p').append(item+', ');
});
$('#'+blueButton).click(function () {
console.log('clicked blue button');
// clears the role_Actor to be used to recapture checkboxes
role_Actor = [];
console.log('role_Actor = '+role_Actor);
//$('#modal-'+roleId).modal();
$('#modal-'+roleId).modal({persist:true});
return false;
});
}
答案 0 :(得分:12)
html
是一个方法而不是属性,你需要使用()
,然后你可以使用String对象的length
属性来检查返回的html字符串的长度:
if ( $.trim( $('.'+rowName+' div').html() ).length ) {
// $('.'+rowName).find('div, p, span').remove();
$('.'+rowName).find('div, p, span').empty();
}
请注意,如果要更改元素的HTML内容,则无需删除其当前的html内容。 html
方法会覆盖当前的html内容。
答案 1 :(得分:6)
检查孩子的长度。
if($('.'+rowName+' div').children().length > 0)
答案 2 :(得分:2)
您可以使用.html()
(并计算空白):
var $row = $('.rowName');
if (!$row.find('div').html().trim().length) {
$row.find('div, span, p').empty();
}
答案 3 :(得分:1)
尝试
if ($('.'+rowName+' div').html().length > 0) {
$('.'+rowName+' div').empty();
$('.'+rowName+' span').empty();
$('.'+rowName+' p').empty();
}
答案 4 :(得分:0)
Plain Vanilla JavaScript也应该做到这一点。
if(document.querySelectorAll('.'+rowName+' div')[0].childElementCount > 0){
console.log("found");
}
答案 5 :(得分:0)
这样做:
var elementExists = $('.'+rowName+' div').html();
if (elementExists) { ... }