Как через javascript вывести часть удаленной страницы?

Discussion in 'Javascript' started by web456web, 16 May 2021.

  1. web456web

    web456web Banned

    Joined:
    4 Apr 2021
    Messages:
    27
    Likes Received:
    11
    Reputations:
    1
    Есть страница https://nuipogoda.ru/ ... как через javascript или через jquery отобразить с нее только div с id "pc"?
     
  2. web456web

    web456web Banned

    Joined:
    4 Apr 2021
    Messages:
    27
    Likes Received:
    11
    Reputations:
    1
    Пробую так:
    Code:
    <!DOCTYPE html>
    <html>
    <head>
      <meta charset="UTF-8">
      <meta name="viewport" content="width=device-width, initial-scale=1">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script>
    var div = $.get( "https://antichat.com/threads/483773/", function() {
      alert( "success" );
    })
    </script>
    </head>
    <body>
    <script>
    str = JSON.stringify(div);
    document.write(str);
    </script>
    </body>
    </html>
    Что не правильно?
     
Loading...