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

时间:2013-12-17 17:16:07

标签: javascript php jquery html css

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

下面是我的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'。如果有人帮助我,我会非常感激。

2 个答案:

答案 0 :(得分:3)

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

应该这样做。

答案 1 :(得分:1)

试试这个:

$('#wrap td').find('.titleLine').remove();
$('#wrap td').find('table').remove();