如何找到隐藏的链接?

时间:2016-10-05 04:38:43

标签: javascript php html python-3.x web-scraping

无论如何通过javascript或python脚本找到隐藏的链接?

例如:

http://www.barneys.com/product/adidas-originals-by-kanye-west-yeezy-boost-350-v2-sneakers-504886623.html?

此链接仍然有效,但当我搜索上述链接中的yeezy或任何关键字时,它就不会出现。它怎么还存在?

1 个答案:

答案 0 :(得分:-1)

您使用的失败代码是什么? 如果您需要特定的选择器来获取包含特定单词的锚标记,您可以使用以下语法搜索它:

 $('a[href*="SomeWordIntTheHref"]')

...来自此页面:

jQuery add class to href if link contains specific text