Hej. Jeg har lavet en lille Iframe til min hjemmeside, men mit problem er, at jeg ikke ved hvordan man sender data videre fra en iframe, F.eks. med POST eller GET metoden, så jeg kan behandle det i PHP bagefter.
Min kode er:
<script language="JavaScript">
function Init()
{
iView.document.designMode = 'On';
}
function boldIt()
{
iView.document.execCommand('bold', false, null);
}
function italicIt()
{
iView.document.execCommand('italic', false, null);
}
function underlineIt()
{
iView.document.execCommand('Underline', false, null);
}
function linkIt()
{
iView.document.execCommand('CreateLink', false, null);
}
function listIt()
{
iView.document.execCommand('InsertUnorderedList', false, null);
}
</script>
<body onLoad="Init()">
<input type="button" onClick="boldIt()" value="Bold">
<input type="button" onClick="italicIt()" value="Italic">
<input type="button" onClick="underlineIt()" value="Underline">
<input type="button" onClick="linkIt()" value="Link">
<input type="button" onClick="listIt()" value="List">
<br />
<iframe id="iView" name="Indhold" style="width: 400px; height:180px"></iframe>
</body>