Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<html>
<head>
<title>AJAX</title>
<script type="text/javascript">
function verschicken() {
var nachricht = document.getElementById("textarea").value;
alert(nachricht);
}
</script>
</head>
<body>
<textarea id="textarea"></textarea>
<button onClick="verschicken">Senden</button>
</body>
</html>
<html>
<head>
<title>AJAX</title>
<script type="text/javascript"><!--
function suchfenster(){
var nachricht = document.getElementById("meinText").value;
var http = null;
if (window.XMLHttpRequest) {
http = new XMLHttpRequest();
} else if (window.ActiveXObject) {
http = new ActiveXObject("Microsoft.XMLHTTP");
}
if (http != null) {
http.open("POST", "eintragen.php", true);
http.onreadystatechange = ausgeben;
http.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
http.send('name='+nachricht);
}
function ausgeben() {
if (http.readyState == 4) {
document.getElementById("Ausgabe").innerHTML =
http.responseText;
}
}
}
</script>
</head>
<body>
<textarea id="meinText"></textarea>
<button onClick="suchfenster()">Senden</button>
</body>
</html>
var leerstring = "";