使用Javascript使用URL获取其他网站的源代码

时间:2017-06-22 04:12:48

标签: javascript html url

如何使用JavaScript使用URL

查看网站的html源代码

1 个答案:

答案 0 :(得分:2)

以下是您要查找的代码:

$.ajax({
   url: 'http://www.somesite.com/',
   type: 'GET',
   success: function(res) {
      var data = $.parseHTML(res);  //<----try with $.parseHTML().
      // data you will get full html code from given url

      // this is how you can fetch any element from html that fetched from url
      $(data).find('div.content').each(function(){
          $('#here').append($(this).html());
     });

   }
 });
  

注意:这假设网站启用CORS非常漂亮   对于大多数网站而言并不常见。(正如Patrick Roberts所说。感谢这一点:))