Как передать текст из одного фрейма в другой. Вот у меня две страницы page1.html и page2.html. Как передать текст smile с page2.html, в input page1.html. Мой код работает только когда input и ссылка smile находится на одной странице. Вот сам код:
<!-- Главная страница объединяющие фреймы--><!doctype html><htmllang="en"><head><title>Тест</title></head><body><iframesrc="page1.html"width="600px"height="800px"></iframe><iframesrc="page2.html"width="200px"height="800px"></iframe></body></html><!-- page1.html--><!doctype html><htmllang="en"><head><title>Page1</title><scriptsrc="index.js"></script></head><body><inputtype="text"id="text"></body></html><!-- page2.html--><!doctype html><htmllang="en"><head><title>Page2</title><scriptsrc="index.js"></script></head><body><!-- Просто так добавила, чтобы проверить как работает
<input type="text" id="text">--><fontid="smile"></font></body></html><!-- файл js index -->
function smile()
{
document.getElementById("smile").innerHTML="<ahref=\"javascript:smile2(':(')\">Смайл</a><br>";
}
function smile2(sm)
{
document.getElementById("text").value = sm;
}
setTimeout(smile,50);
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.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
Katerina23
Как передать текст из одного фрейма в другой. Вот у меня две страницы page1.html и page2.html. Как передать текст smile с page2.html, в input page1.html. Мой код работает только когда input и ссылка smile находится на одной странице. Вот сам код:
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.