Jump to content
  • 0

Передача текста из одного фрейма в другой


Katerina23
 Share

Question

Как передать текст из одного фрейма в другой. Вот у меня две страницы page1.html и page2.html. Как передать текст smile с page2.html, в input page1.html. Мой код работает только когда input и ссылка smile находится на одной странице. Вот сам код:

<!-- Главная страница объединяющие фреймы-->
<!doctype html>
<html lang="en">
<head>
	<title>Тест</title>
</head>
<body>  
<iframe src="page1.html" width="600px" height="800px"></iframe>
<iframe src="page2.html" width="200px" height="800px"></iframe>
</body>
</html>
<!-- page1.html-->
<!doctype html>
<html lang="en">
<head>
	<title>Page1</title>
  <script src="index.js"></script>
</head>
<body>  
 <input type="text" id="text">
</body>
</html>
<!-- page2.html-->
<!doctype html>
<html lang="en">
<head>
	<title>Page2</title>
  <script src="index.js"></script>
</head>
<body>
<!-- Просто так добавила, чтобы проверить как работает
  <input type="text" id="text">-->  
  <font id="smile"></font>
</body>
</html>
<!-- файл js index -->
function smile()
{
  document.getElementById("smile").innerHTML="<a href=\"javascript:smile2(':(')\">Смайл</a><br>";
}
function smile2(sm)
{
   document.getElementById("text").value = sm;
}
setTimeout(smile,50);

 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

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