gpt4 book ai didi

javascript - 如何在删除之前检查元素中是否包含 HTML?查询

转载 作者:太空狗 更新时间:2023-10-29 13:20:05 25 4
gpt4 key购买 nike

在一个函数中,我需要在尝试删除 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;
});

}

最佳答案

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 内容。

关于javascript - 如何在删除之前检查元素中是否包含 HTML?查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15824886/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com