Jump to content
  • 0

Помогите с input'ом


chups
 Share

Question

У меня такая проблема есть два файла html на первом есть определенный текст и кнопка типа ссылка на вторую страничку на которой расположен input. Так вот вопрос мне нужно чтобы при нажатии кнопки на первой стр. текст попадал в input на второй стр. как это сделать? ПОМОГИТЕ ПОЖАЛУЙСТА!!!!!

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

создай файл с кодом

<html>
<head>
<title>Документ основного окна</title>
<script type="text/javascript">
function newWindow(){
window.open("subwind.html","sub","height=200,width=200");
}
</script>
</head>
<body>
<form>
<input type="button" value="Новое окно" onclick="newWindow()">
<br>
Место для отображения текста у казанного в подокне:
<input type="text" name="entry">
</form>
</body>
</html>

и в торой файл под названием subwind.html с кодом

<html>
<head>
<title>Документ подокна</title>
</head>
<body>
<form onsubmit="return false">
Текст отобразиться в основном окне:
<input type="text" onchange="opener.document.forms[0].entry.value=this.value">
</form>
</body>
</html>

Link to comment
Share on other sites

  • 0
создай файл с кодом

<html>
<head>
<title>Документ основного окна</title>
<script type="text/javascript">
function newWindow(){
window.open("subwind.html","sub","height=200,width=200");
}
</script>
</head>
<body>
<form>
<input type="button" value="Новое окно" onclick="newWindow()">
<br>
Место для отображения текста у казанного в подокне:
<input type="text" name="entry">
</form>
</body>
</html>

и в торой файл под названием subwind.html с кодом

<html>
<head>
<title>Документ подокна</title>
</head>
<body>
<form onsubmit="return false">
Текст отобразиться в основном окне:
<input type="text" onchange="opener.document.forms[0].entry.value=this.value">
</form>
</body>
</html>

Спасибо попробую

не вышло((((

сорри получилось только наоборот

Link to comment
Share on other sites

  • 0
Спасибо попробую

не вышло((((

сорри получилось только наоборот

а можно как то в обратном направлении сделать что бы со страничке где находится кнопка передавал текст на стр где нету кнопки???? (во напутал)))))

Link to comment
Share on other sites

  • 0

Тебе уже отвечали в другом посте, этот почти весь код от туда (я только ошибки исправил), вроде у тя есть php.

Создай файл с именем p1.html (конечно соблюдая все правила: хедеры, боди и т.д.) в боди напиши

<form  action='p2.php' method='post'>
<input type='text' name='text' />
<input type='submit' name='submit' />
</form>

Создай файл p2.php

<form name='form1' post="" action="">
<input type='text' name='contener' value="<?php echo $_POST['text']; ?>" /> - тот самый инпут
</form>

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