0

想让两个父母(曾祖父母)或两个孩子下来?

<table style="background-color: #008000; border-style: none;" border="0" cellpadding="2" cellspacing="2">
  <tr>
    <td>
      <img height="5" width="5" border="0" src="https://spacer.gif" title="07:00,24hrs: B Shift /.../E704/RS704/Firefighter #2" alt="07:00,24hrs: B Shift /.../E704/RS704/Firefighter #2">
    </td>
  </tr>
</table>
<img height="2" width="2" border="0" src="https://spacer.gif" alt="">
  <img alt="" height="1" width="1" border="0" src="https://spacer.gif">
    </td>
    <TD ALIGN="RIGHT" VALIGN="TOP" width="17%">
      <a href="javascript:void(0)" title="01/15/2013" class="daylink" onClick="return DayClick('01/15/2013');">15</a>
    </TD>
    <td rowspan="2" width="5">
      <img alt="" height="1" width="1" border="0" src="https://spacer.gif">
    </td>
    </tr>
    <tr>
      <TD COLSPAN="2">
        <TABLE>
          <TR>
            <TD style="background-color: #41FFB9; " class="calexception">
              <a href="javascript:void(0)" onClick="return ShowRemoveExceptionWindow(&quot;4A30E80.fre01&quot;,&quot;3280530&quot;);" title="10hrs DetNonEMSStud(10),  07:00 - 17:00" style="color: #000000; text-decoration: none; font-weight: bold;">DetNonEMSStud(10)</a>
            </TD>
          </TR>
        </TABLE>

IOS:

NSString *tutorialsXpathQueryString = @"//table/tr/td";
NSArray *tutorialsNodes = [tutorialsParser searchWithXPathQuery:tutorialsXpathQueryString];
NSLog(@"here is url: %@", tutorialsNodes);

NSMutableArray *newTutorials = [[NSMutableArray alloc] initWithCapacity:0];
for (TFHppleElement *element in tutorialsNodes) {

    Tutorial *tutorial = [[Tutorial alloc] init];
    [newTutorials addObject:tutorial];

    tutorial.url = [element objectForKey:@"style"];
    tutorial.title = [[element firstChild] objectForKey:@"title"];

我从中获得风格<td>和标题<a>就好了我还需要从中获得风格<table>

我对 obj-c 非常陌生,并且第一次尝试使用 XPATH,任何示例都会很棒!

4

1 回答 1

1

我没有使用过 TFHpple,但如果它支持标准 XPath,您应该能够td使用此 XPath 从 a 转到它的包含表:

ancestor::table[1]

这个 XPath 选择最近的表,它是上下文节点的祖先,所以如果你有这个标记:

<table>
    <tr><td></td></tr>
    <tr>
       <td>
         <table><tr><td></td></tr></table>
         <table>
             <tr>
                 <td>Hey!</td>
             </tr>
         </table>
       </td>
    </tr>      
</table>

您的上下文节点是td带有文本“嘿!”的,然后上面的 XPath 将选择第 6 行的表。

看起来 TFHpple 没有提供在上下文节点上评估 XPath 的方法。鉴于此,一个新的建议 - 每个元素只有一个父元素,所以如果你继续通过父元素,你最终应该找到表。向下走要困难得多,因为一个元素可以有任意数量的直接子代,每个子代都有自己的一组子代。我不太了解Objective-C,但是如果您可以确定表格只有两个级别,那么这样的事情可能会起作用:

TFHppleElement *table = [[element parent] parent];

如果不能保证 table 向上两层,那么应该有某种方法通过 parent 向上找到 table。这是伪代码,但希望你明白:

for (TFHppleElement *element in tutorialsNodes) {

    Tutorial *tutorial = [[Tutorial alloc] init];
    [newTutorials addObject:tutorial];

    tutorial.url = [element objectForKey:@"style"];
    tutorial.title = [[element firstChild] objectForKey:@"title"];

    TFHppleElement *table = [element parent];
    while(table != null && [table tagName] != "table") {
        table = [table parent]
    }

    // table should either be the parent table at this point, 
    //  or null if there was no parent table.
于 2013-01-28T16:29:22.937 回答