Home  >  Article  >  Web Front-end  >  Example of JavaScript getting the source code of the current web page

Example of JavaScript getting the source code of the current web page

黄舟
黄舟Original
2017-10-30 10:00:414560browse
  1. via outerHTML

    document.documentElement.outerHTML
  2. via asynchronous request

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

    $("html").html();

The above is the detailed content of Example of JavaScript getting the source code of the current web page. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn