javascript怎么抓取网页中javascript返回数据
javascript可以通过XMLHttpRequest抓取当前页的源代码,但是怎么抓取网页中有javascript动态返回的具体数据?
比如网页中有动态时间的脚本,怎么抓这个日期,而不是js代码,(各种网页内的脚本不固定):
<script>
function getNowFormatDate() {
var date = new Date();
var seperator1 = "-";
var seperator2 = ":";
var month = date.getMonth() + 1;
var strDate = date.getDate();
if (month >= 1 && month <= 9) {
month = "0" + month;
}
if (strDate >= 0 && strDate <= 9) {
strDate = "0" + strDate;
}
var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
+ " " + date.getHours() + seperator2 + date.getMinutes()
+ seperator2 + date.getSeconds();
return currentdate;
}
document.write(getNowFormatDate());</script>
请高手看看!