var xhr = new XMLHttpRequest()
xhr.open('GET', window.location.href, false)
xhr.send()
sourceCodeTxt= xhr.responseText
需要获取网页中的javascript执行后生成的完整的网页源码(通常使用的右键-查看源代码是看不到js执行后的内容的,用firefox的firebug看到的代码就是js执行后的代码),从中提取一些有用的数据。
var xhr = new XMLHttpRequest()
xhr.open('GET', window.location.href, false)
xhr.send()
sourceCodeTxt= xhr.responseText
需要获取网页中的javascript执行后生成的完整的网页源码(通常使用的右键-查看源代码是看不到js执行后的内容的,用firefox的firebug看到的代码就是js执行后的代码),从中提取一些有用的数据。