我收到404:“ GET / undefined”错误,无法确定它的来源。在JS,HTML,PHP中使用最少的代码。有关信息,请参见http://www.w3wa.com。
Javascript:
function getImage() {
var xhttp = new XMLHttpRequest;
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200 ) {
console.log(this.responseText);
document.getElementById('dot').src = this.responseText;
document.getElementById('dot').alt = 'three bar thingie';
document.getElementById('dot').style.width = '100px';
document.getElementById('dot').style.height = '100px';
}
}
xhttp.open("GET","Parse.php",true);
xhttp.send();
}
PHP:
<?php
/* Parse.php
Geesh, testing ONE item
*/
echo 'Images/3LineMenu.png';
?>
浏览至http://www.w3wa.com并查看源代码(如果您希望查看html)。在Linux上的Chrome和Firefox,以及W10的Chrome上进行了测试。
HTML:
<img id='dot' src='Images/1dot.png' style='width: 1px; height: 1px;' alt='one little dot'>
<script>document.getElementById('dot').src = getImage();</script>