web-dev-qa-db-ja.com

URLでjavascriptを使用してhtmlコードを取得する

Xmlhttprequestとurlを使用してhtmlのソースコードを取得しようとしています。これで私を助けることができる人はいますか?私はプログラミングに慣れていないので、jQueryを使用せずにそれをどのように実行できるかについてはあまりわかりません。前もって感謝します。

16
simplified

JQueryを使用します。

$.ajax({ url: 'your-url', success: function(data) { alert(data); } });

このデータはHTMLです。

JQueryなし(JSのみ):

function makeHttpObject() {
  try {return new XMLHttpRequest();}
  catch (error) {}
  try {return new ActiveXObject("Msxml2.XMLHTTP");}
  catch (error) {}
  try {return new ActiveXObject("Microsoft.XMLHTTP");}
  catch (error) {}

  throw new Error("Could not create HTTP request object.");
}
var request = makeHttpObject();
request.open("GET", "your_url", true);
request.send(null);
request.onreadystatechange = function() {
  if (request.readyState == 4)
    alert(request.responseText);
};
23
Senad Meškin

ここにajaxを使用する方法に関するチュートリアルがあります: https://www.w3schools.com/xml/ajax_intro.asp

これは、そのチュートリアルから取られたサンプルコードです。

<html>
<head>
<script type="text/javascript">
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","ajax_info.txt",true);
xmlhttp.send();
}
</script>
</head>
<body>

<div id="myDiv"><h2>Let AJAX change this text</h2></div>
<button type="button" onclick="loadXMLDoc()">Change Content</button>

</body>
</html>
4
Guy

外部(クロスサイト)ソリューションの場合、次を使用できます。 https://stackoverflow.com/a/18447625/2657601

$.ajax()関数を使用するため、google jqueryが含まれます。

2
otaxige_aol