할 수있는 사람의 도움/조언을 어떤 방식으로 HTML 태그를 구문 분석하는 가장 좋은 방법은 <body>...</body>
태그HTML 태그를 구문 분석 자바 스크립트가
0
A
답변
2
난 당신이 PHP를 사용하여 HTML 문서를 구문 분석한다고 가정 측면에 나타납니다. 이 XHTML 인 경우 - 난 당신이 여기에 http://www.php.net/manual/en/book.dom.php
에 대해 읽어 제안 당신은 다른 페이지에서 아약스를 통해 전체 HTML 문서를로드 jQuery를 선택기를 사용하여 분석 할 수 PHP Pro
<?php
$html = '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" dir="ltr">
<head>
<title>PHPRO.ORG</title>
</head>
<body>
<h2>Forecast for Saturday</h2>
<!-- Issued at 0828 UTC Friday 23 May 2008 -->
<table border="0" summary="Capital Cities Precis Forecast">
<tbody>
<tr>
<td><a href="/products/IDN10064.shtml" title="Link to Sydney forecast">Sydney</a></td>
<td title="Maximum temperature in degrees Celsius" class="max alignright">19°</td>
<td>Fine. Mostly sunny.</td>
</tr>
<tr>
<td><a href="/products/IDV10450.shtml" title="Link to Melbourne forecast">Melbourne</a></td>
<td title="Maximum temperature in degrees Celsius" class="max alignright">16°</td>
<td>Fog then fine.</td>
</tr>
<tr>
<td><a href="/products/IDQ10095.shtml" title="Link to Brisbane forecast">Brisbane</a></td>
<td title="Maximum temperature in degrees Celsius" class="max alignright">24°</td>
<td>Mostly fine</td>
</tr>
<tr>
<td><a href="/products/IDW12300.shtml" title="Link to Perth forecast">Perth</a></td>
<td title="Maximum temperature in degrees Celsius" class="max alignright">21°</td>
<td>Few showers, increasing later.</td>
</tr>
<tr>
<td><a href="/products/IDS10034.shtml" title="Link to Adelaide forecast">Adelaide</a></td>
<td title="Maximum temperature in degrees Celsius" class="max alignright">20°</td>
<td>Fine. Mostly sunny.</td>
</tr>
<tr>
<td><a href="/products/IDT65061.shtml" title="Link to Hobart forecast">Hobart</a></td>
<td title="Maximum temperature in degrees Celsius" class="max alignright">13°</td>
<td>Mainly fine.</td>
</tr>
<tr>
<td><a href="/products/IDN10035.shtml" title="Link to Canberra forecast">Canberra</a></td>
<td title="Maximum temperature in degrees Celsius" class="max alignright">15°</td>
<td>Fine, mostly sunny.</td>
</tr>
<tr>
<td><a href="/products/IDD10150.shtml" title="Link to Darwin forecast">Darwin</a></td>
<td title="Maximum temperature in degrees Celsius" class="max alignright">32°</td>
<td>Fine and sunny.</td>
</tr>
</tbody>
</table>
</body>
</html>
';
/*** a new dom object ***/
$dom = new domDocument;
/*** load the html into the object ***/
$dom->loadHTML($html);
/*** discard white space ***/
$dom->preserveWhiteSpace = false;
/*** the table by its tag name ***/
$tables = $dom->getElementsByTagName('table');
/*** get all rows from the table ***/
$rows = $tables->item(0)->getElementsByTagName('tr');
/*** loop over the table rows ***/
foreach ($rows as $row)
{
/*** get each column by tag name ***/
$cols = $row->getElementsByTagName('td');
/*** echo the values ***/
echo $cols->item(0)->nodeValue.'<br />';
echo $cols->item(1)->nodeValue.'<br />';
echo $cols->item(2)->nodeValue;
echo '<hr />';
}
?>
+0
나는 그가 PHP가 아니라 자바 스크립트 솔루션을 찾고 있다고 생각했다. – JasonMichael
+1
나도 처음에는 태그를 발견했지만 – John
0
에서 제공하는 예이다. 이것이 잘 될 지 여부는 확실하지 않습니다.
2
John Resig's html parser과 같은 의미입니까?
우리는 당신이 달성하고자하는 것에 대해 좀 더 자세하게 설명 할 필요가 있다고 생각합니다. – Matt