Когда я помещаю курсор на кнопку, она должна открыться My_File.txt
, но ничего не происходит.
<h1>Demo</h1>
<button type="button" onmouseover="showDoc()">Show Content</button>
<script>
function showDoc()
{
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function ()
{
if (this.readyState == 4 && this.status == 200)
{
document.write(this.responseText);
}
};
xhttp.open("GET", "My_File.txt", true);
xhttp.send();
}
</script>