ホームページ > 記事 > ウェブフロントエンド > JSはajaxメソッドを使用して、指定されたurl_javascriptスキルの先頭情報の指定されたフィールド値を取得します
この記事の例では、JS が ajax メソッドを使用して、指定された URL の先頭情報内の指定されたフィールド値を取得する方法を説明します。皆さんの参考に共有してください。具体的な分析は次のとおりです。
以下のJSコードは、ajax_info.txtの先頭情報のLast Modified属性と最終更新時刻を取得するために使用します
<!DOCTYPE html> <html> <head> <script> function loadXMLDoc(url) { 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('p1').innerHTML="Last modified: " + xmlhttp.getResponseHeader('Last-Modified'); } } xmlhttp.open("GET",url,true); xmlhttp.send(); } </script> </head> <body> <p id="p1">The getResponseHeader() function is used to return specific header information from a resource, like length, server-type, content-type, last-modified, etc.</p> <button onclick="loadXMLDoc('ajax_info.txt')">Get "Last-Modified" information</button> </body> </html>
この記事が皆様の JavaScript プログラミング設計に役立つことを願っています。