NodeJS 获取网页源代码


获取网页源代码

node 获取网页源代码


  var http = require('http');
  var url = "http://www.baidu.com/";
  // 参数url 和 回调函数
  http.get(url, function (res) {
    var html = '';
    // 绑定data事件 回调函数 累加html片段
    res.on('data', function (data) {
      html += data;
    });

    res.on('end', function () {
      console.log(html);
    });
  }).on('error', function () {
    console.log('获取数据错误');
  });

jquery 获取网页源代码

  $.get(window.location.href,function(res){
  console.log(res);
  });

原生 js 获取网页源代码

  // 这个获取到的是被解析过的 html, 并且没有 <!DOCTYPE html>
  document.documentElement.outerHTML


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM