Jump to content
  • 0

Объект Image во фрейме


Patriot_spb
 Share

Question

У меня есть

фрейм и форма

Допустим в index.php

<IFRAME name="frm" frameborder="1" WIDTH="150" HEIGHT="200" SCROLLING="no" [NORESIZE] align="left">
</iframe>

<form name="uplf" method="post" target="frm" action="upl.php" enctype="multipart/form-data" >
<input type="file" size="10" name="uplfile" \><br />
<input type="submit" value=" Загрузить ">
<input type="button" value=" Get " onClick="prew()">
</form>

В файле upl.php я совершаю загрузку картинки на сервер.

Подскажите можно ли как-то (может неправильно скажу) создать массив или объект этой самой картинки, чтоб его передать в index.php. Или другие способы передать информацию из фрейма в головную страницу?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
Или другие способы передать информацию из фрейма в головную страницу?

в upl.php вставляешь код

<script type="text/javascript">
window.parent.document.getElementById("id куда надо вставить").innerHTML="картинка";
</script>

Link to comment
Share on other sites

  • 0
вот теперь будет так, как ты описал.

на главной странице:
<img id='im' src='1.jpg'>


в upl.php
echo"
<script type="text/javascript">
window.parent.document.getElementById('im').src='$uploadfile';
</script>";

Не работает. и еще ругается на кавычки '$uploadfile' - это же переменная. ее не надо в кавычки.

Link to comment
Share on other sites

  • 0
Не работает. и еще ругается на кавычки '$uploadfile' - это же переменная. ее не надо в кавычки.

echo"
<script type='text/javascript'>
window.parent.document.getElementById('im').src='$uploadfile';
</script>";

Edited by youmay
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy