Hi,
Ich hab folgendes Problem:
Auf einer html Seite habe ich ein Formular in einem Iframe, dass ich per Javascript automatisch abschicke (an ein externes script). In diesem Iframe krieg ich dann die Meldung "File xxx created".
Ich möchte also, nachdem diese Antwort gekommen ist, irgendeine Art von Nachricht ausgeben.
Hier mal der Beispielcode:
iframe_test.htm: (datei im iframe)
Der Inhalt des Iframes wird also nach abschicken des Formulars verändert, das src Attribut bleibt aber gleich.
Gibt es irgendeine Möglichkeit zu checken, ob sich der html-Inhalt des iframes verändert hat?
Ich hab folgendes Problem:
Auf einer html Seite habe ich ein Formular in einem Iframe, dass ich per Javascript automatisch abschicke (an ein externes script). In diesem Iframe krieg ich dann die Meldung "File xxx created".
Ich möchte also, nachdem diese Antwort gekommen ist, irgendeine Art von Nachricht ausgeben.
Hier mal der Beispielcode:
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
function doSubmit()
{
window.frames.ob10_frame.document.forms[0].submit();
}
//-->
</SCRIPT>
</head>
<body onload="doSubmit()">
<iframe id="ob10_frame" src="iframe_test.htm" width="100%" height="50%">
</iframe>
</body>
</html>
iframe_test.htm: (datei im iframe)
HTML:
<html>
<head>
<title>OB10 Post Gateway
</title>
</head>
<body>
<font face="Tahome,Arial,Helvetica">
<h1>OB10 POST Gateway</h1>
<p>Enter credentials, enter data and press Submit
<form action="https://connector2.ob10.com/AAAPOSTTEST/post.asp" method="Post">
<table border="0">
<tr>
<td>OB10 Number:<td><input name="OB10Number" size="40" value="AAAPOSTTEST"><br>
</tr>
<tr>
<td>Username:<td><input name="Username" size="40" value="posttest"><br>
</tr>
<tr>
<td>Password:<td><input type="password" name="Password" size="40" value="posttest"><br>
</tr>
<tr>
<td>Data:<td><textarea name="Contents" cols="40" rows="10"></textarea><br />
</tr>
<tr>
<td><td><input type="submit" value="Submit">
</table>
</p>
</form>
</font>
</body>
</html>
Der Inhalt des Iframes wird also nach abschicken des Formulars verändert, das src Attribut bleibt aber gleich.
Gibt es irgendeine Möglichkeit zu checken, ob sich der html-Inhalt des iframes verändert hat?