XMLHttpRequest getResponseHeader()
getResponseHeader() 方法可以返回 HTTP 頭資訊指定欄位的值。
方法主要特點總結如下:
(1).如果指定的欄位不存在,方法返回 null。
(2).如果沒有收到伺服器的響應資訊,方法返回 null。
(3).方法的引數不區分大小寫。
(4).如果有同名欄位,那麼各欄位值會通過逗號與空格分隔。
關於 XMLHttpRequest 更多內容參閱 XMLHttpRequest 物件 一章節。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="utf-8"> <meta name="author" content="https://www.softwhy.com/" /> <title>螞蟻部落</title> <style> div { width: 150px; height: 30px; line-height: 30px; text-align: center; margin-bottom: 5px; border: 1px dotted green; font-size: 12px; } </style> <script> function loadXMLDoc() { let xmlHttp = new XMLHttpRequest(); xmlHttp.onreadystatechange = function () { if (xmlHttp.readyState == 4 && xmlHttp.status == 200) { let oHeader = document.getElementById("header"); let oShow = document.getElementById("show"); oHeader.innerHTML = xmlHttp.getResponseHeader("Content-type"); oShow.innerHTML = xmlHttp.responseText; } } xmlHttp.open("POST", "demo/ajax/echo.php", true); xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); xmlHttp.send("webName=螞蟻部落&age=5"); } window.onload = ()=> { let oBt = document.getElementById("bt"); oBt.onclick = ()=> { loadXMLDoc(); } } </script> </head> <body> <div id="header"></div> <div id="show"></div> <input id="bt" type="button" value="檢視效果"/> </body> </html>
後臺伺服器 PHP 程式碼如下:
[PHP] 純文字檢視 複製程式碼<?php echo $_POST["webName"]."成立".$_POST["age"]."年了"?>
點選按鈕程式碼執行效果截圖如下:
上面程式碼簡單演示了getResponseHeader() 方法的功能。
相關文章
- XMLHttpRequestXMLHTTP
- XMLHttpRequest send()XMLHTTP
- XMLHttpRequest overrideMimeType()XMLHTTPIDE
- XMLHttpRequest open()XMLHTTP
- XMLHttpRequest getAllResponseHeaders()XMLHTTPHeader
- XMLHttpRequest abort()XMLHTTP
- XMLHttpRequest setRequestHeader()XMLHTTPHeader
- XMLHttpRequest readyStateXMLHTTP
- XMLHttpRequest onreadystatechange事件XMLHTTP事件
- XMLHttpRequest abort 事件XMLHTTP事件
- XMLHttpRequest 物件概述XMLHTTP物件
- XMLHttpRequest responseText屬性XMLHTTP
- ajax建立XMLHttpRequest物件XMLHTTP物件
- AJAX 建立 XMLHttpRequest物件XMLHTTP物件
- XMLHttpRequest withCredentials 屬性XMLHTTP
- XMLHttpRequest timeout 屬性XMLHTTP
- XMLHttpRequest responseText 屬性XMLHTTP
- XMLHttpRequest readyState響應狀態XMLHTTP
- JavaScript 複習之 XMLHttpRequest 物件JavaScriptXMLHTTP物件
- springboot 解決跨域 Access to XMLHttpRequest atSpring Boot跨域XMLHTTP
- 詳解XMLHttpRequest的跨域資源共享XMLHTTP跨域
- Ajax 之戰:XMLHttpRequest與Fetch API比較XMLHTTPAPI
- Ajax 跨域請求 Access to XMLHttpRequest 解決方案跨域XMLHTTP
- http request-01-XMLHttpRequest XHR 簡單介紹HTTPXML
- 根據JavaScript中原生的XMLHttpRequest實現jQuery的AjaxJavaScriptXMLHTTPjQuery
- NetworkError: Failed to execute 'send' on 'XMLHttpRequest': Failed to load xxxx錯誤解決方法ErrorAIXMLHTTP
- 有了XMLHttpRequest,前後端們終於過上了幸福的生活XMLHTTP後端
- 原生Ajax的簡單使用:XMLHttpRequest物件,方法,屬性,HelloWorld,資料格式XMLHTTP物件
- 如何模擬一個XMLHttpRequest請求用於單元測試——nise原始碼閱讀與分析XMLHTTP原始碼