gpt4 book ai didi

javascript - 使用 jquery 从 td 元素中删除 div 和 table

转载 作者:可可西里 更新时间:2023-11-01 01:02:19 26 4
gpt4 key购买 nike

我有一个名为“ahblog.htm”的文件,该文件中包含一个“td 元素”。我正在使用“jquery”来提取“td 元素”(内容 topContent topContentBox)并将其放入“div”中。我遇到的问题是从“td 元素”中删除“div”和“表格”。

下面是我的php代码

<?php 
include( 'site/simple_html_dom.php');
$html=file_get_html( 'http://achievementhunter.com/blog/');
$html->save('site/ahblog.htm')
?>
<script type="text/javascript" src="site/jquery.js"></script>
<script type="text/javascript">
$('document').ready(function() {
$('#wrap').click(function (event)
{
event.preventDefault();
});
$('#wrap').load('site/ahblog.htm .content.topContent.topContentBox');
});
</script>

下面是'td元素'

<div id="wrap">
<td class="content topContent topContentBox" height="100%" width="100%" valign="top">
<div class="titleLine"> <----- I want to remove this one
<div style id="streamDivLeveljournal43125372">
<div style id="streamDivLeveljournal100703120097">
<div style id="streamDivLeveljournal823117600">
<div style id="streamDivLeveljournal43115856">
<div style id="streamDivLeveljournal100703110797">
<table width="100%">...</table> <----- I want to remove this one
</td>
</div>

我遇到的问题是删除表格,因为有多个表格,而且它没有“ID”。如果有人能帮助我,我将非常感激。

最佳答案

$(".content.topContent.topContentBox").find(".titleLine, table").remove(); 

应该这样做。

关于javascript - 使用 jquery 从 td 元素中删除 div 和 table,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20640572/

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