如何从中获取文本“Job id”:

时间:2016-05-25 09:43:06

标签: css ruby screen-scraping

<a name="HRS_AGNT_RSLT_I$srt7$0" 
id="HRS_AGNT_RSLT_I$srt7$0" 
tabindex="109" 
class="PSLEVEL1GRIDCOLUMNHDR" href="javascript:submitAction_win0(document.win0,'HRS_AGNT_RSLT_I$srt7$0');" title="Click column heading to sort descending">Job ID</a>.`

我想从上面的代码中获取“job id”文本。 我尽我所能,但仍然无法找到出路。 这真的让我在这个项目上停留了一段时间。 我需要有人帮助我。

2 个答案:

答案 0 :(得分:0)

只需使用:document.getElementById(“myAnchor”)。text

例如,复制并粘贴此信息并告诉我它是否有帮助:

<!DOCTYPE html>
<html>
<body>

<p><a id="myAnchor" href="http://www.example.com/test.htm#part2">Example link</a></p>

<p>Click the button to display the text content of the link above.</p>

<button onclick="myFunction()">Try it</button>

<p id="demo"></p>

<script>
function myFunction() {
    var x = document.getElementById("myAnchor").text;
    document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>

答案 1 :(得分:0)

尝试使用正则表达式。

s = "<a name=\"HRS_AGNT_RSLT_I$srt7$0\" id=\"HRS_AGNT_RSLT_I$srt7$0\" tabindex=\"109\" class=\"PSLEVEL1GRIDCOLUMNHDR\" href=\"javascript:submitAction_win0(document.win0,'HRS_AGNT_RSLT_I$srt7$0');\" title=\"Click column heading to sort descending\">Job ID</a>."
reg = /<a.+>(.+)<\/a>/
s[reg, 1]
# => "Job ID"