我現在正在製作一個網絡爬蟲。我可以在Python中找出JavaScript的結果嗎?
從HTML獲取鏈接很容易,但從javascript的結果獲取鏈接對我來說並不容易。
我可以得到JavaScript的結果,以便知道鏈接被引用的位置嗎?例如
。
如何從Python中的JavaScript代碼檢索到google.com的鏈接?
<!DOCTYPE html>
<html lang="en">
<head></head>
<body>
<a href="#" id="goog">to google</a>
</body>
<script>
document.getElementById('goog').onclick = function() {
window.location = "http://google.com";
};
</script>
</html>
如果任何網絡爬蟲從javascript中提取鏈接,我會感到驚訝。 –