我正在尝试在twitter链接上创建一个共享来抓取div中第一个(或前一个)href的href和文本。我在页面上有多个div,所以不是为每个div id编写一个唯一的脚本,我希望代码从div中获取数据,其中点击的链接位于变量中。我该怎么做? hrefs没有id。
<div id="genericID">
<a href="www.google.com">This is not a sentence.</a>
<a href="https://twitter.com/share">Share on Twitter.</a>
</div>
答案 0 :(得分:2)
这样的事可能有用:
trace_table = go.Table(
type='table',
header=dict(values=table_title),
cells=dict(values=sorted_matrix)
)
以下是我用来测试的示例: https://codepen.io/Parrigin777/pen/QaxyYZ
答案 1 :(得分:1)
您可以使用:
<div id="hello">
<a href="www.microsoft.com">test1</a>
<a href="www.google.com">test2</a>
</div>
和javascript:
$(this).parent().find('a').attr('href')
以下是一个例子:
这会在点击div中的所有主持人时发出警告&#39;你好。