我想爬取汽车之家的信息,预想如下语句返回的是“一汽”,但并没有。 说明:“一汽”是通过伪元素添加的,所以并不只 DOM 中。
爬取地址: http://car.autohome.com.cn/config/series/3170.html
window.getComputedStyle(document.querySelector('span.hs_kw15_configpl'), ':before').getPropertyValue('content')
1
wly19960911 2017-07-31 20:03:11 +08:00
控制台输入 window.getComputedStyle
结果输出是 ƒ (element, pseudoElt){if ( pseudoElt!=undefined && typeof( pseudoElt)=='string' && pseudoElt.toLowerCase().indexOf(':before')>-1){var obj = {};obj.getPropertyValue = function (x) { return x; };return … 看了下。貌似 getComputedStyle 被覆写了 |
2
wly19960911 2017-07-31 20:26:17 +08:00
帮你找了下,他们的 window.getComputedStyle 方法被覆写并且被替换成了 window.hs_fuckyou 方法 hhh
|